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
@@ -13,7 +13,7 @@ public:
~ViewManager();
private:
std::vector<std::shared_ptr<View>> m_views;
std::vector<std::shared_ptr<View> > m_views;
};