aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:27:32 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-08-28 19:54:01 -0700
commit5b91a84230e85e8f560fb78de1fd4bf6b68e8756 (patch)
treeeb7905ac7b1be5185c542537822667f3f019c9d2 /toolsrc/include
parentd02d44b0f12ae0603c5578bdcc4c0a51a3e309c7 (diff)
downloadvcpkg-5b91a84230e85e8f560fb78de1fd4bf6b68e8756.tar.gz
vcpkg-5b91a84230e85e8f560fb78de1fd4bf6b68e8756.zip
Change Strings::EMPTY to char *
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Strings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg_Strings.h b/toolsrc/include/vcpkg_Strings.h
index 5af7c6f7c..2607caf4c 100644
--- a/toolsrc/include/vcpkg_Strings.h
+++ b/toolsrc/include/vcpkg_Strings.h
@@ -36,8 +36,8 @@ namespace vcpkg::Strings::details
namespace vcpkg::Strings
{
- static constexpr const CStringView EMPTY = "";
- static constexpr const CWStringView WEMPTY = L"";
+ static constexpr const char* EMPTY = "";
+ static constexpr const wchar_t* WEMPTY = L"";
bool is_empty(const CStringView s);
bool is_empty(const CWStringView s);