--- branches/development/src/utils/OpenMDException.hpp 2013/05/10 16:09:34 1873 +++ branches/development/src/utils/OpenMDException.hpp 2013/05/15 15:09:35 1874 @@ -44,16 +44,15 @@ namespace OpenMD { #define UTILS_OPENMDEXCEPTION_HPP namespace OpenMD { -class OpenMDException { - public: - OpenMDException() : msg_("") {} - OpenMDException(const std::string msg) : msg_(msg) {} - const std::string getMessage() {return msg_;} - private: - - std::string msg_; - -}; - + class OpenMDException { + public: + OpenMDException() : msg_("") {} + OpenMDException(const std::string &msg) : msg_(msg) {} + const std::string getMessage() {return msg_;} + private: + std::string msg_; + + }; + } #endif