Wiped out some non-ascii characters that snuck into the copyright.

llvm-svn: 103516
Cr-Mirrored-From: sso://chromium.googlesource.com/_direct/external/github.com/llvm/llvm-project
Cr-Mirrored-Commit: 5b08a8a43254ed30bd953e869b0fd9fc1e8b82d0
diff --git a/include/strstream b/include/strstream
index 50f639f..9556857 100644
--- a/include/strstream
+++ b/include/strstream
@@ -1,7 +1,7 @@
 // -*- C++ -*-
 //===--------------------------- strstream --------------------------------===//
 //
-// ÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊÊ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.
@@ -37,7 +37,7 @@
 
     void freeze(bool freezefl = true);
     char* str();
-    int	pcount() const;
+    int pcount() const;
 
 protected:
     virtual int_type overflow (int_type c = EOF);
@@ -76,7 +76,7 @@
     char *str();
 
 private:
-    strstreambuf sb;	// exposition only
+    strstreambuf sb; // exposition only
 };
 
 class ostrstream
@@ -94,7 +94,7 @@
     int pcount() const;
 
 private:
-    strstreambuf sb;	// exposition only
+    strstreambuf sb; // exposition only
 };
 
 class strstream
@@ -120,7 +120,7 @@
     char* str();
 
 private:
-    strstreambuf sb;	// exposition only
+    strstreambuf sb; // exposition only
 };
 
 }  // std
@@ -160,7 +160,7 @@
 
     void freeze(bool __freezefl = true);
     char* str();
-    int	pcount() const;
+    int pcount() const;
 
 protected:
     virtual int_type overflow (int_type __c = EOF);
@@ -272,7 +272,7 @@
     int pcount() const  {return __sb_.pcount();}
 
 private:
-    strstreambuf __sb_;	// exposition only
+    strstreambuf __sb_; // exposition only
 };
 
 class strstream
@@ -324,7 +324,7 @@
     char* str()        {return __sb_.str();}
 
 private:
-    strstreambuf __sb_;	// exposition only
+    strstreambuf __sb_; // exposition only
 };
 
 _LIBCPP_END_NAMESPACE_STD