X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdebug%2Ferrorreporter.h;h=9a60f85c0f41b8bbdc4244734302e0c47fabe1c3;hb=4ad05c650c55e3edccea887d15b26f41cdf60fb6;hp=4a146744674ffc8973ad5321138fbfb968eb6caa;hpb=122846f0881673770d88eff7d925ecf25c01b62e;p=libs%2Fcore.git diff --git a/source/debug/errorreporter.h b/source/debug/errorreporter.h index 4a14674..9a60f85 100644 --- a/source/debug/errorreporter.h +++ b/source/debug/errorreporter.h @@ -10,16 +10,16 @@ namespace Debug { class ErrorReporter: private NonCopyable { private: - ErrorReporter *prev = 0; + ErrorReporter *_prev = nullptr; - 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; };