project: switched back to using space in nested template definitions

Clang on Mac OS X produced an error when compiling nested template definitions
without a space at the end "A<B<int>>"
This commit is contained in:
Eberhard Graether
2014-03-31 18:09:42 +02:00
parent d4e3433e5d
commit 055b3d0029
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ private:
std::shared_ptr<ComponentFactory> m_componentFactory;
std::vector<std::shared_ptr<Component>> m_components;
std::vector<std::shared_ptr<Component> > m_components;
};