From 00d83601b47dab3fb2893db2647964b568a045e3 Mon Sep 17 00:00:00 2001 From: "Stephan T. Lavavej" Date: Sat, 5 May 2018 01:40:27 +0000 Subject: [PATCH] [libcxx] [test] Fix whitespace, NFC. Strip trailing whitespace and untabify. llvm-svn: 331576 --- .../ostreambuf.iter.ops/failed.pass.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/failed.pass.cpp b/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/failed.pass.cpp index 5cc9cf92872f..64997d382dd9 100644 --- a/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/failed.pass.cpp +++ b/libcxx/test/std/iterators/stream.iterators/ostreambuf.iterator/ostreambuf.iter.ops/failed.pass.cpp @@ -19,23 +19,23 @@ template > struct my_streambuf : public std::basic_streambuf { - typedef typename std::basic_streambuf::int_type int_type; - typedef typename std::basic_streambuf::char_type char_type; - - my_streambuf() {} - int_type sputc(char_type) { return Traits::eof(); } - }; + typedef typename std::basic_streambuf::int_type int_type; + typedef typename std::basic_streambuf::char_type char_type; + + my_streambuf() {} + int_type sputc(char_type) { return Traits::eof(); } + }; int main() { { - my_streambuf buf; + my_streambuf buf; std::ostreambuf_iterator i(&buf); i = 'a'; assert(i.failed()); } { - my_streambuf buf; + my_streambuf buf; std::ostreambuf_iterator i(&buf); i = L'a'; assert(i.failed());