mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-25 12:03:32 +01:00
17 lines
443 B
C++
17 lines
443 B
C++
#include "pch.h"
|
|
#include "vcpkg_Enums.h"
|
|
#include "vcpkg_Checks.h"
|
|
|
|
namespace vcpkg::Enums
|
|
{
|
|
std::string nullvalue_toString(const std::string& enum_name)
|
|
{
|
|
return Strings::format("%s_NULLVALUE", enum_name);
|
|
}
|
|
|
|
__declspec(noreturn) void nullvalue_used(const LineInfo& line_info, const std::string& enum_name)
|
|
{
|
|
Checks::exit_with_message(VCPKG_LINE_INFO, "NULLVALUE of enum %s was used", enum_name);
|
|
}
|
|
}
|