]> git.tdb.fi Git - libs/core.git/blobdiff - source/debug/errorreporter.h
Update naming of internal variables and functions
[libs/core.git] / source / debug / errorreporter.h
index 4a146744674ffc8973ad5321138fbfb968eb6caa..dca8f522ebeddf0113a74efa754c91f7026d7cff 100644 (file)
@@ -10,16 +10,16 @@ namespace Debug {
 class ErrorReporter: private NonCopyable
 {
 private:
-       ErrorReporter *prev = 0;
+       ErrorReporter *_prev = 0;
 
-       static ErrorReporter *current;
+       static ErrorReporter *_current;
 
 protected:
        ErrorReporter();
 public:
        virtual ~ErrorReporter();
 
-       static const ErrorReporter *get_current() { return current; }
+       static const ErrorReporter *get_current() { return _current; }
 
        virtual bool report_uncaught_exception(const std::exception &) const = 0;
 };