diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-24 13:34:39 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-08-24 13:34:39 -0700 |
| commit | 26c8cb56afe89bf72e50b4490189a58de1d3f7cd (patch) | |
| tree | a42014af4409b72d8ead2ce3c9a89ff969ded779 /toolsrc/include | |
| parent | 08232f12a30bab2f03e464ff2f53dca063b02e17 (diff) | |
| parent | 52d606e6ac6650271fc2fd02718eb107dd33e797 (diff) | |
| download | vcpkg-26c8cb56afe89bf72e50b4490189a58de1d3f7cd.tar.gz vcpkg-26c8cb56afe89bf72e50b4490189a58de1d3f7cd.zip | |
Merge branch 'CreateProcess'
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg_Strings.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Strings.h b/toolsrc/include/vcpkg_Strings.h index 325a2cb4c..e94742c8f 100644 --- a/toolsrc/include/vcpkg_Strings.h +++ b/toolsrc/include/vcpkg_Strings.h @@ -19,10 +19,12 @@ namespace vcpkg::Strings::details inline long long to_printf_arg(const long long s) { return s; } - inline double to_printf_arg(const double s) { return s; } + inline unsigned long to_printf_arg(const unsigned long s) { return s; } inline size_t to_printf_arg(const size_t s) { return s; } + inline double to_printf_arg(const double s) { return s; } + std::string format_internal(const char* fmtstr, ...); inline const wchar_t* to_wprintf_arg(const std::wstring& s) { return s.c_str(); } |
