]> git.tdb.fi Git - libs/core.git/blob - source/debug/errorreporter.cpp
Remove deprecated things
[libs/core.git] / source / debug / errorreporter.cpp
1 #include "errorreporter.h"
2
3 namespace Msp {
4 namespace Debug {
5
6 ErrorReporter *ErrorReporter::current = 0;
7
8 ErrorReporter::ErrorReporter():
9         prev(current)
10 {
11         current = this;
12 }
13
14 ErrorReporter::~ErrorReporter()
15 {
16         current = prev;
17 }
18
19 } // namespace Debug
20 } // namespace Msp