Index: base/string_util.h |
=================================================================== |
--- base/string_util.h (revision 50001) |
+++ base/string_util.h (working copy) |
@@ -54,10 +54,6 @@ |
// Some of these implementations need to be inlined. |
-// CLANG NOTE |
-// Qualified calls with base:: is to work around |
-// http://llvm.org/bugs/show_bug.cgi?id=6762 |
- |
// We separate the declaration from the implementation of this inline |
// function just so the PRINTF_FORMAT works. |
inline int snprintf(char* buffer, size_t size, const char* format, ...) |
@@ -65,7 +61,7 @@ |
inline int snprintf(char* buffer, size_t size, const char* format, ...) { |
va_list arguments; |
va_start(arguments, format); |
- int result = base::vsnprintf(buffer, size, format, arguments); |
+ int result = vsnprintf(buffer, size, format, arguments); |
va_end(arguments); |
return result; |
} |
@@ -77,7 +73,7 @@ |
inline int swprintf(wchar_t* buffer, size_t size, const wchar_t* format, ...) { |
va_list arguments; |
va_start(arguments, format); |
- int result = base::vswprintf(buffer, size, format, arguments); |
+ int result = vswprintf(buffer, size, format, arguments); |
va_end(arguments); |
return result; |
} |