| Index: base/strings/stringprintf.h
|
| diff --git a/base/strings/stringprintf.h b/base/strings/stringprintf.h
|
| index 4b2eab1424a9f02984a9a540be880b0aec0cc4ba..3e952ee245e6d3b1589482ddfb7af9f92ec80f21 100644
|
| --- a/base/strings/stringprintf.h
|
| +++ b/base/strings/stringprintf.h
|
| @@ -27,47 +27,43 @@ namespace base {
|
| BASE_EXPORT std::string StringPrintf(_Printf_format_string_ const char* format,
|
| ...)
|
| PRINTF_FORMAT(1, 2) WARN_UNUSED_RESULT;
|
| -#if defined(OS_WIN)
|
| +/*#if defined(OS_WIN)
|
| BASE_EXPORT std::wstring StringPrintf(
|
| _Printf_format_string_ const wchar_t* format,
|
| ...) WPRINTF_FORMAT(1, 2) WARN_UNUSED_RESULT;
|
| -#endif
|
| +#endif*/
|
|
|
| // Return a C++ string given vprintf-like input.
|
| BASE_EXPORT std::string StringPrintV(const char* format, va_list ap)
|
| PRINTF_FORMAT(1, 0) WARN_UNUSED_RESULT;
|
|
|
| // Store result into a supplied string and return it.
|
| -BASE_EXPORT const std::string& SStringPrintf(
|
| - std::string* dst,
|
| - _Printf_format_string_ const char* format,
|
| - ...) PRINTF_FORMAT(2, 3);
|
| -#if defined(OS_WIN)
|
| +/*#if defined(OS_WIN)
|
| BASE_EXPORT const std::wstring& SStringPrintf(
|
| std::wstring* dst,
|
| _Printf_format_string_ const wchar_t* format,
|
| ...) WPRINTF_FORMAT(2, 3);
|
| -#endif
|
| +#endif*/
|
|
|
| // Append result to a supplied string.
|
| BASE_EXPORT void StringAppendF(std::string* dst,
|
| _Printf_format_string_ const char* format,
|
| ...) PRINTF_FORMAT(2, 3);
|
| -#if defined(OS_WIN)
|
| +/*#if defined(OS_WIN)
|
| BASE_EXPORT void StringAppendF(std::wstring* dst,
|
| _Printf_format_string_ const wchar_t* format,
|
| ...) WPRINTF_FORMAT(2, 3);
|
| -#endif
|
| +#endif*/
|
|
|
| // Lower-level routine that takes a va_list and appends to a specified
|
| // string. All other routines are just convenience wrappers around it.
|
| BASE_EXPORT void StringAppendV(std::string* dst, const char* format, va_list ap)
|
| PRINTF_FORMAT(2, 0);
|
| -#if defined(OS_WIN)
|
| +/*#if defined(OS_WIN)
|
| BASE_EXPORT void StringAppendV(std::wstring* dst,
|
| const wchar_t* format, va_list ap)
|
| WPRINTF_FORMAT(2, 0);
|
| -#endif
|
| +#endif*/
|
|
|
| } // namespace base
|
|
|
|
|