aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-13 17:15:39 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-13 17:56:21 -0700
commit98ea6780e7a4af7d237783a72a2a56a6188ae3da (patch)
tree791ae645d2fe4e8d0eb2056fe2ab75f4c6b57153 /toolsrc/include
parent8e8debc8482b7241522e20243a65852c11c53fa4 (diff)
downloadvcpkg-98ea6780e7a4af7d237783a72a2a56a6188ae3da.tar.gz
vcpkg-98ea6780e7a4af7d237783a72a2a56a6188ae3da.zip
Enums::nullvalue_used() now requires LineInfo as first arg
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Enums.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Enums.h b/toolsrc/include/vcpkg_Enums.h
index b1ecc311b..ef41155d9 100644
--- a/toolsrc/include/vcpkg_Enums.h
+++ b/toolsrc/include/vcpkg_Enums.h
@@ -1,9 +1,10 @@
#pragma once
#include <string>
+#include "LineInfo.h"
namespace vcpkg::Enums
{
std::string nullvalue_toString(const std::string& enum_name);
- __declspec(noreturn) void nullvalue_used(const std::string& enum_name);
+ __declspec(noreturn) void nullvalue_used(const LineInfo& line_info, const std::string& enum_name);
}