Reorder function declarations

Obey your inner OCD
This commit is contained in:
Victor Zverovich 2015-02-26 06:54:12 -08:00
parent 110d4c0ab0
commit a8a7534f78

View File

@ -1610,9 +1610,9 @@ class BasicWriter {
// and strings to a char stream. If you want to print a wide string as a // and strings to a char stream. If you want to print a wide string as a
// pointer as std::ostream does, cast it to const void*. // pointer as std::ostream does, cast it to const void*.
// Do not implement! // Do not implement!
void operator<<(typename internal::WCharHelper<wchar_t, Char>::Unsupported);
void operator<<( void operator<<(
typename internal::WCharHelper<const wchar_t *, Char>::Unsupported); typename internal::WCharHelper<const wchar_t *, Char>::Unsupported);
void operator<<(typename internal::WCharHelper<wchar_t, Char>::Unsupported);
// Appends floating-point length specifier to the format string. // Appends floating-point length specifier to the format string.
// The second argument is only used for overload resolution. // The second argument is only used for overload resolution.