cemu-vcpkg/toolsrc/src/vcpkg_Enums.cpp

18 lines
434 B
C++
Raw Normal View History

2017-02-09 18:26:16 -08:00
#include "pch.h"
#include "vcpkg_Enums.h"
#include "vcpkg_Checks.h"
namespace vcpkg::Enums
{
std::string nullvalue_to_string(const std::string& enum_name)
2017-02-09 18:26:16 -08:00
{
return Strings::format("%s_NULLVALUE", enum_name);
}
[[noreturn]]
void nullvalue_used(const LineInfo& line_info, const std::string& enum_name)
2017-02-09 18:26:16 -08:00
{
Checks::exit_with_message(line_info, "NULLVALUE of enum %s was used", enum_name);
2017-02-09 18:26:16 -08:00
}
}