| 42 | } |
| 43 | |
| 44 | inline int vswprintf(wchar_t* buffer, size_t size, |
| 45 | const wchar_t* format, va_list arguments) { |
| 46 | DCHECK(IsWprintfFormatPortable(format)); |
| 47 | return ::vswprintf(buffer, size, format, arguments); |
| 48 | } |
| 49 | |
| 50 | } // namespace butil |
| 51 |
no test coverage detected