nicole mazzuca 6a41626eaf
[vcpkg] Format the C++ in CI (#11655)
* [vcpkg] Format the C++ in the CI

* format the C++

* CR
2020-07-06 16:45:34 -07:00

13 lines
255 B
C++

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