aboutsummaryrefslogtreecommitdiff
path: root/common/singleton.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/singleton.h')
-rw-r--r--common/singleton.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/singleton.h b/common/singleton.h
index 9e6cc5438b..dcc4241f27 100644
--- a/common/singleton.h
+++ b/common/singleton.h
@@ -60,7 +60,7 @@ public:
// order might become an issue. There are various approaches
// to solve that problem, but for now this is sufficient
if (!_singleton)
- _singleton = makeInstance();
+ _singleton = T::makeInstance();
return *_singleton;
}
protected: