summaryrefslogtreecommitdiff
path: root/include/extension.h
diff options
context:
space:
mode:
authorMartijn Otto <martijn.otto@copernica.com>2014-02-14 16:30:23 +0100
committerMartijn Otto <martijn.otto@copernica.com>2014-02-14 16:30:23 +0100
commit06aa5fd5afaba69544b93654fb0a4f9c2651306e (patch)
tree99cd2ee120786a84531b450f9ef64e2319ef5192 /include/extension.h
parent5c23fee5ce58ae66a70f3bd19a1dc2dff7220f13 (diff)
Merged pull request #14
Diffstat (limited to 'include/extension.h')
-rw-r--r--include/extension.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/extension.h b/include/extension.h
index 862549a..1082bcb 100644
--- a/include/extension.h
+++ b/include/extension.h
@@ -178,7 +178,7 @@ public:
void add(const char *name, const Class<T> &type)
{
// construct info
- ClassInfo<T> *info = new ClassInfo<T>(name, type);
+ _ClassInfo *info = new ClassInfo<T>(name, type);
// add class
_classes.insert(std::unique_ptr<_ClassInfo>(info));