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; };