From 055b3d002972a61b02fe7b4abd0cc6704e03b946 Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Mon, 31 Mar 2014 18:09:42 +0200 Subject: [PATCH] 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>" --- src/lib/component/ComponentManager.h | 2 +- src/lib/component/view/ViewManager.h | 2 +- src/lib/data/Graph.h | 4 ++-- src/lib/data/TextLocationFile.h | 2 +- src/lib/data/TextLocationLine.h | 2 +- src/lib/data/TextLocationStorage.h | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib/component/ComponentManager.h b/src/lib/component/ComponentManager.h index 6e1605a5..455b8003 100644 --- a/src/lib/component/ComponentManager.h +++ b/src/lib/component/ComponentManager.h @@ -28,7 +28,7 @@ private: std::shared_ptr m_componentFactory; - std::vector> m_components; + std::vector > m_components; }; diff --git a/src/lib/component/view/ViewManager.h b/src/lib/component/view/ViewManager.h index c9c96351..4f19a89c 100644 --- a/src/lib/component/view/ViewManager.h +++ b/src/lib/component/view/ViewManager.h @@ -13,7 +13,7 @@ public: ~ViewManager(); private: - std::vector> m_views; + std::vector > m_views; }; diff --git a/src/lib/data/Graph.h b/src/lib/data/Graph.h index 8e08c72c..69b12edc 100644 --- a/src/lib/data/Graph.h +++ b/src/lib/data/Graph.h @@ -13,8 +13,8 @@ public: ~Graph(); private: - std::vector> m_nodes; - std::vector> m_edges; + std::vector > m_nodes; + std::vector > m_edges; }; diff --git a/src/lib/data/TextLocationFile.h b/src/lib/data/TextLocationFile.h index 977ec795..75696072 100644 --- a/src/lib/data/TextLocationFile.h +++ b/src/lib/data/TextLocationFile.h @@ -15,7 +15,7 @@ public: private: const std::string m_filePath; - std::vector> m_textLocationLine; + std::vector > m_textLocationLine; }; diff --git a/src/lib/data/TextLocationLine.h b/src/lib/data/TextLocationLine.h index 55a041ac..ec241d7a 100644 --- a/src/lib/data/TextLocationLine.h +++ b/src/lib/data/TextLocationLine.h @@ -19,7 +19,7 @@ private: const std::weak_ptr m_textLocationFile; const unsigned int m_lineNumber; - const std::vector> m_textLocations; + const std::vector > m_textLocations; }; diff --git a/src/lib/data/TextLocationStorage.h b/src/lib/data/TextLocationStorage.h index 0a2fbc8a..135e0e50 100644 --- a/src/lib/data/TextLocationStorage.h +++ b/src/lib/data/TextLocationStorage.h @@ -12,7 +12,7 @@ public: ~TextLocationStorage(); private: - std::vector> m_textLocationFiles; + std::vector > m_textLocationFiles; };