]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/getopt.h
Update naming of internal variables and functions
[libs/core.git] / source / core / getopt.h
index 5c21ccb97bb7142aeb2b968ebd0e8e23e1303676..ed6cf86195d2419cf7e3b579e470b64e242bc0bd 100644 (file)
@@ -13,13 +13,13 @@ namespace Msp {
 class usage_error: public std::runtime_error
 {
 private:
-       std::string help_;
+       std::string m_help;
 
 public:
-       usage_error(const std::string &w, const std::string &h = std::string()): std::runtime_error(w), help_(h) { }
+       usage_error(const std::string &w, const std::string &h = std::string()): std::runtime_error(w), m_help(h) { }
        virtual ~usage_error() throw() = default;
 
-       const char *help() const throw() { return help_.c_str(); }
+       const char *help() const throw() { return m_help.c_str(); }
 };