Massive but simple changes:

- Removed all tabs
- Changed all Doxygen @cond/@endcond tags with preprocessor sections, as Doxygen still has some problems when parsing this code. This also makes unmatched Doxygen sections a compilation error, which is easier to detect.
This commit is contained in:
Ion Gaztañaga
2014-07-30 11:46:32 +02:00
parent 36713fbe07
commit ad1b7f301c
220 changed files with 19267 additions and 19271 deletions

View File

@@ -45,7 +45,7 @@ struct StringEqual
if(string1.size() != string2.size())
return false;
return std::char_traits<typename Str1::value_type>::compare
(string1.c_str(), string2.c_str(), (std::size_t)string1.size()) == 0;
(string1.c_str(), string2.c_str(), (std::size_t)string1.size()) == 0;
}
};