mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 23:09:04 +08:00
10 lines
202 B
C
10 lines
202 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);
|
||
|
}
|