mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-09 21:08:20 +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);
|
|
}
|