Blob Blame History Raw
diff -up plee-the-bear-0.4.1/bear-engine/core/src/engine/code/compiled_file.cpp.svn3463 plee-the-bear-0.4.1/bear-engine/core/src/engine/code/compiled_file.cpp
--- plee-the-bear-0.4.1/bear-engine/core/src/engine/code/compiled_file.cpp.svn3463	2010-09-18 12:23:34.789920074 +0200
+++ plee-the-bear-0.4.1/bear-engine/core/src/engine/code/compiled_file.cpp	2010-09-18 12:25:03.615919994 +0200
@@ -50,7 +50,7 @@ bear::engine::compiled_file::compiled_fi
  * \brief Read a string from the file.
  * \param s The string to read.
  */
-bear::engine::compiled_file::compiled_file&
+bear::engine::compiled_file&
 bear::engine::compiled_file::operator>>( std::string& s )
 {
   if (m_text)
@@ -66,8 +66,7 @@ bear::engine::compiled_file::operator>>(
  * \brief Read an long from the file.
  * \param i The long to read.
  */
-bear::engine::compiled_file::compiled_file&
-bear::engine::compiled_file::operator>>( long& i )
+bear::engine::compiled_file& bear::engine::compiled_file::operator>>( long& i )
 {
   if (m_text)
     input_long_as_text(i);
@@ -82,7 +81,7 @@ bear::engine::compiled_file::operator>>(
  * \brief Read an unsigned long from the file.
  * \param i The long to read.
  */
-bear::engine::compiled_file::compiled_file&
+bear::engine::compiled_file&
 bear::engine::compiled_file::operator>>( unsigned long& i )
 {
   if (m_text)
@@ -98,8 +97,7 @@ bear::engine::compiled_file::operator>>(
  * \brief Read an integer from the file.
  * \param i The integer to read.
  */
-bear::engine::compiled_file::compiled_file&
-bear::engine::compiled_file::operator>>( int& i )
+bear::engine::compiled_file& bear::engine::compiled_file::operator>>( int& i )
 {
   if (m_text)
     input_integer_as_text(i);
@@ -114,7 +112,7 @@ bear::engine::compiled_file::operator>>(
  * \brief Read an unsigned integer from the file.
  * \param i The integer to read.
  */
-bear::engine::compiled_file::compiled_file&
+bear::engine::compiled_file&
 bear::engine::compiled_file::operator>>( unsigned int& i )
 {
   if (m_text)
@@ -130,7 +128,7 @@ bear::engine::compiled_file::operator>>(
  * \brief Read a real from the file.
  * \param r The value to read.
  */
-bear::engine::compiled_file::compiled_file&
+bear::engine::compiled_file&
 bear::engine::compiled_file::operator>>( double& r )
 {
   if (m_text)
@@ -146,8 +144,7 @@ bear::engine::compiled_file::operator>>(
  * \brief Read a boolean from the file.
  * \param b The value to read.
  */
-bear::engine::compiled_file::compiled_file&
-bear::engine::compiled_file::operator>>( bool& b )
+bear::engine::compiled_file& bear::engine::compiled_file::operator>>( bool& b )
 {
   if (m_text)
     input_bool_as_text(b);