]> rtime.felk.cvut.cz Git - l4.git/blobdiff - kernel/fiasco/tool/preprocess/test/verify/operator.h
Update
[l4.git] / kernel / fiasco / tool / preprocess / test / verify / operator.h
index 4d63c04e8ac8460162e6cf2a79ca2f351bb9d0de..960e0789e432f88a5690a4b4032287a9b177410f 100644 (file)
@@ -15,28 +15,28 @@ class Foo
 public:  
 #line 10 "operator.cpp"
   void * 
-  operator new(size_t);        // funny comment
+  operator new (size_t);       // funny comment
   
   
 #line 16 "operator.cpp"
   Foo&
-  operator+(const Foo&);       // funny comment
+  operator+ (const Foo&);      // funny comment
   
   
 #line 22 "operator.cpp"
   Foo&
-  operator=(const Foo&);       // funny comment
+  operator= (const Foo&);      // funny comment
   
   
 #line 28 "operator.cpp"
   Foo&
-  operator*(const Foo&);       // funny comment
+  operator* (const Foo&);      // funny comment
   
 };
 
 #line 34 "operator.cpp"
 template <typename T, typename A> std::vector<T, A >& 
-operator <<(std::vector<T, A>& in, const T& new_elem);
+operator<< (std::vector<T, A>& in, const T& new_elem);
 
 //
 // IMPLEMENTATION of function templates
@@ -47,7 +47,7 @@ operator <<(std::vector<T, A>& in, const T& new_elem);
 
 
 template <typename T, typename A> std::vector<T, A >& 
-operator <<(std::vector<T, A>& in, const T& new_elem)
+operator<< (std::vector<T, A>& in, const T& new_elem)
 {
   in.push_back (new_elem);
   return in;