mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 19:29:01 +08:00
12 lines
276 B
C++
12 lines
276 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
namespace vcpkg::Enums
|
|
{
|
|
std::string nullvalue_toString(const std::string& enum_name);
|
|
|
|
__declspec(noreturn) void nullvalue_used(const std::string& enum_name);
|
|
|
|
__declspec(noreturn) void unreachable(const std::string& enum_name);
|
|
}
|