Removed trailing whitespace from all *.?pp files
[supertux.git] / src / util / utf8_iterator.cpp
index f2550a3..5bd0923 100644 (file)
@@ -99,13 +99,13 @@ UTF8Iterator::UTF8Iterator(const std::string& text_) :
   }
 }
 
-  bool 
+  bool
 UTF8Iterator::done() const
   {
     return pos > text.size();
   }
 
-  UTF8Iterator& 
+  UTF8Iterator&
 UTF8Iterator::operator++() {
     try {
       chr = decode_utf8(text, pos);