]> git.tdb.fi Git - libs/core.git/blobdiff - source/io/zlibcompressed.h
Update naming of internal variables and functions
[libs/core.git] / source / io / zlibcompressed.h
index fb12d61a4eff0fdcb07386582b759c302fc361dd..da7313b4c42a62a3838045b0737eefbb919f7044 100644 (file)
@@ -12,13 +12,13 @@ namespace IO {
 class zlib_error: public std::runtime_error
 {
 private:
-       int code_;
+       int m_code;
 
 public:
        zlib_error(const std::string &, int);
        virtual ~zlib_error() throw() = default;
 
-       int code() const throw() { return code_; }
+       int code() const throw() { return m_code; }
 };
 
 /**