Skip to content

Commit

Permalink
Change Strings::EMPTY to char *
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkaratarakis committed Aug 29, 2017
1 parent d02d44b commit 5b91a84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions toolsrc/include/vcpkg_Strings.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5b91a84

Please sign in to comment.