mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 11:28:59 +08:00
11 lines
242 B
C++
11 lines
242 B
C++
#pragma once
|
|
#include "LineInfo.h"
|
|
#include <string>
|
|
|
|
namespace vcpkg::Enums
|
|
{
|
|
std::string nullvalue_to_string(const CStringView enum_name);
|
|
|
|
[[noreturn]] void nullvalue_used(const LineInfo& line_info, const CStringView enum_name);
|
|
}
|