X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fsystemerror.h;fp=source%2Fcore%2Fsystemerror.h;h=1662cec37f0f779f06bc6b80bab1ec36d547393c;hp=d0a5634cf38e04cc5d70e2df3e677c622878ed97;hb=5763dd6e8089c97699cbcbd221afb7fe1841bcdd;hpb=03862ac4f38db0799872850dc4ab43b88688e4eb diff --git a/source/core/systemerror.h b/source/core/systemerror.h index d0a5634..1662cec 100644 --- a/source/core/systemerror.h +++ b/source/core/systemerror.h @@ -9,14 +9,14 @@ namespace Msp { class system_error: public std::runtime_error { private: - int code_; + int m_code; public: system_error(const std::string &, int = -1); system_error(const std::string &, const std::string &); virtual ~system_error() throw() = default; - int code() const throw() { return code_; } + int code() const throw() { return m_code; } private: static std::string get_message(int);