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;
};
+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;
};
+2 -2
View File
@@ -13,8 +13,8 @@ public:
~Graph();
private:
std::vector<std::shared_ptr<Node>> m_nodes;
std::vector<std::shared_ptr<Edge>> m_edges;
std::vector<std::shared_ptr<Node> > m_nodes;
std::vector<std::shared_ptr<Edge> > m_edges;
};
+1 -1
View File
@@ -15,7 +15,7 @@ public:
private:
const std::string m_filePath;
std::vector<std::shared_ptr<TextLocationLine>> m_textLocationLine;
std::vector<std::shared_ptr<TextLocationLine> > m_textLocationLine;
};
+1 -1
View File
@@ -19,7 +19,7 @@ private:
const std::weak_ptr<TextLocationFile> m_textLocationFile;
const unsigned int m_lineNumber;
const std::vector<std::shared_ptr<TextLocation>> m_textLocations;
const std::vector<std::shared_ptr<TextLocation> > m_textLocations;
};
+1 -1
View File
@@ -12,7 +12,7 @@ public:
~TextLocationStorage();
private:
std::vector<std::shared_ptr<TextLocationFile>> m_textLocationFiles;
std::vector<std::shared_ptr<TextLocationFile> > m_textLocationFiles;
};