aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-29 19:25:07 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-29 19:25:07 -0700
commita4ab4fd24150e0c1341aa05192b6cc9c12c57c49 (patch)
tree011da21256d948d4bdbccb825bab3ad0848454dc /toolsrc/include
parent8e3ee0523072c9330474a13507782cccb2b2be06 (diff)
downloadvcpkg-a4ab4fd24150e0c1341aa05192b6cc9c12c57c49.tar.gz
vcpkg-a4ab4fd24150e0c1341aa05192b6cc9c12c57c49.zip
Rename wchar_t overload of format_internal to wformat_internal
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 f4b989292..6b4896640 100644
--- a/toolsrc/include/vcpkg_Strings.h
+++ b/toolsrc/include/vcpkg_Strings.h
@@ -31,7 +31,7 @@ namespace vcpkg {namespace Strings {namespace details
return s;
}
- std::wstring format_internal(const wchar_t* fmtstr, ...);
+ std::wstring wformat_internal(const wchar_t* fmtstr, ...);
}}}
namespace vcpkg {namespace Strings
@@ -47,7 +47,7 @@ namespace vcpkg {namespace Strings
std::wstring format(const wchar_t* fmtstr, const Args&...args)
{
using vcpkg::Strings::details::to_wprintf_arg;
- return details::format_internal(fmtstr, to_wprintf_arg(to_wprintf_arg(args))...);
+ return details::wformat_internal(fmtstr, to_wprintf_arg(to_wprintf_arg(args))...);
}
std::wstring utf8_to_utf16(const std::string& s);