diff options
Diffstat (limited to 'libcxx/include/__std_stream')
-rw-r--r-- | libcxx/include/__std_stream | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/include/__std_stream b/libcxx/include/__std_stream index 6a1fc06bb75..a2591f556b3 100644 --- a/libcxx/include/__std_stream +++ b/libcxx/include/__std_stream @@ -1,7 +1,7 @@ // -*- C++ -*- //===----------------------------------------------------------------------===// // -// ΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚΚThe LLVM Compiler Infrastructure +// The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. @@ -179,7 +179,7 @@ __stdinbuf<_CharT>::pbackfail(int_type __c) while (__enxt > __extbuf) if (ungetc(*--__enxt, __file_) == EOF) return traits_type::eof(); - return traits_type::not_eof(__c); + return traits_type::not_eof(__c); } // __stdoutbuf |