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:
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ public:
|
||||
~ViewManager();
|
||||
|
||||
private:
|
||||
std::vector<std::shared_ptr<View>> m_views;
|
||||
std::vector<std::shared_ptr<View> > m_views;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ public:
|
||||
~TextLocationStorage();
|
||||
|
||||
private:
|
||||
std::vector<std::shared_ptr<TextLocationFile>> m_textLocationFiles;
|
||||
std::vector<std::shared_ptr<TextLocationFile> > m_textLocationFiles;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user