aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Enums.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-22 17:18:41 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-22 17:18:41 -0700
commit004e46d982e8822c356763106e579e5b5e9553f2 (patch)
treede95e702fba6182bdd127942e0b4d8978abc4440 /toolsrc/src/vcpkg_Enums.cpp
parent197d471b42dcffa15e254ec38c654d33f1f050fe (diff)
downloadvcpkg-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.cpp2
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);
}
}