Robert Schumacher e17de99599 [vcpkg] Re-layout all files using new organization scheme.
All filenames and directories are lowercase. Use dots for namespace separation.
2017-10-13 18:37:41 -07:00

13 lines
255 B
C++

#pragma once
#include <vcpkg/base/lineinfo.h>
#include <string>
namespace vcpkg::Enums
{
std::string nullvalue_to_string(const CStringView enum_name);
[[noreturn]] void nullvalue_used(const LineInfo& line_info, const CStringView enum_name);
}