13 lines
255 B
C
Raw Normal View History

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