diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-29 19:25:07 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-29 19:25:07 -0700 |
| commit | a4ab4fd24150e0c1341aa05192b6cc9c12c57c49 (patch) | |
| tree | 011da21256d948d4bdbccb825bab3ad0848454dc /toolsrc/include | |
| parent | 8e3ee0523072c9330474a13507782cccb2b2be06 (diff) | |
| download | vcpkg-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.h | 4 |
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); |
