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