mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-27 01:19:00 +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);
|
|
}
|