Fixing a few cppcheck warnings
[supertux.git] / src / addon / md5.hpp
index 229ebd7..49801c1 100644 (file)
@@ -12,8 +12,8 @@
 // implied warranty of any kind.
 //
 // The translators/modifiers do not claim:
-// (1) that MD5 will do what you think it does; 
-// (2) that this translation/ modification is accurate; or 
+// (1) that MD5 will do what you think it does;
+// (2) that this translation/ modification is accurate; or
 // (3) that this software is "merchantible."
 //
 // based on:
 // is identified as the "RSA Data Security, Inc. MD5 Message-Digest
 // Algorithm" in all material mentioning or referencing this software
 // or this function.
-// 
+//
 // License is also granted to make and use derivative works provided
 // that such works are identified as "derived from the RSA Data
 // Security, Inc. MD5 Message-Digest Algorithm" in all material
 // mentioning or referencing the derived work.
-// 
+//
 // RSA Data Security, Inc. makes no representations concerning either
 // the merchantability of this software or the suitability of this
 // software for any particular purpose. It is provided "as is"
 // without express or implied warranty of any kind.
-// 
+//
 // These notices must be retained in any copies of any part of this
 // documentation and/or software.
-// 
+//
 
 #ifndef HEADER_SUPERTUX_ADDON_MD5_HPP
 #define HEADER_SUPERTUX_ADDON_MD5_HPP
 #include <fstream>
 #include <stdint.h>
 
-class MD5 {
-
+class MD5
+{
 public:
-  MD5(); 
+  MD5();
   MD5(uint8_t* string); /**< digest string, finalize */
   MD5(std::istream& stream); /**< digest stream, finalize */
   MD5(FILE *file); /**< digest file, close, finalize */