mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 20:29:00 +08:00
12 lines
248 B
C++
12 lines
248 B
C++
#pragma once
|
|
#include <string>
|
|
#include "LineInfo.h"
|
|
|
|
namespace vcpkg::Enums
|
|
{
|
|
std::string nullvalue_to_string(const std::string& enum_name);
|
|
|
|
[[noreturn]]
|
|
void nullvalue_used(const LineInfo& line_info, const std::string& enum_name);
|
|
}
|