vcpkg/toolsrc/include/vcpkg_Enums.h

11 lines
244 B
C
Raw Normal View History

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