vcpkg/toolsrc/include/vcpkg_Enums.h

12 lines
247 B
C
Raw Normal View History

2017-02-10 10:26:16 +08:00
#pragma once
#include <string>
#include "LineInfo.h"
2017-02-10 10:26:16 +08:00
namespace vcpkg::Enums
{
std::string nullvalue_toString(const std::string& enum_name);
[[noreturn]]
void nullvalue_used(const LineInfo& line_info, const std::string& enum_name);
2017-02-10 10:26:16 +08:00
}