1
0
mirror of https://github.com/paboyle/Grid.git synced 2026-01-05 01:21:59 +00:00

Hadrons: namespace reorganisation, now everything is in Grid::Hadrons, the 'using Grid::operator<<' statement is used to prevent a very nasty compilation error with GCC.

This commit is contained in:
2016-05-02 19:31:21 -07:00
parent 48fcc34d72
commit 6e83b6a203
13 changed files with 26 additions and 9 deletions

View File

@@ -105,8 +105,8 @@ private:
void depthFirstSearch(void);
void depthFirstSearch(const T &root);
private:
std::map<T, bool> isMarked_;
std::set<Edge> edgeSet_;
std::map<T, bool> isMarked_;
std::set<Edge> edgeSet_;
};
// build depedency matrix from topological sorts