diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-22 17:18:41 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-03-22 17:18:41 -0700 |
| commit | 004e46d982e8822c356763106e579e5b5e9553f2 (patch) | |
| tree | de95e702fba6182bdd127942e0b4d8978abc4440 /toolsrc/src/vcpkg_Enums.cpp | |
| parent | 197d471b42dcffa15e254ec38c654d33f1f050fe (diff) | |
| download | vcpkg-004e46d982e8822c356763106e579e5b5e9553f2.tar.gz vcpkg-004e46d982e8822c356763106e579e5b5e9553f2.zip | |
Correctly forward the line_info parameter
Diffstat (limited to 'toolsrc/src/vcpkg_Enums.cpp')
| -rw-r--r-- | toolsrc/src/vcpkg_Enums.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkg_Enums.cpp b/toolsrc/src/vcpkg_Enums.cpp index b5a487a37..46e61db7b 100644 --- a/toolsrc/src/vcpkg_Enums.cpp +++ b/toolsrc/src/vcpkg_Enums.cpp @@ -11,6 +11,6 @@ namespace vcpkg::Enums __declspec(noreturn) void nullvalue_used(const LineInfo& line_info, const std::string& enum_name) { - Checks::exit_with_message(VCPKG_LINE_INFO, "NULLVALUE of enum %s was used", enum_name); + Checks::exit_with_message(line_info, "NULLVALUE of enum %s was used", enum_name); } } |
