Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Tiago Peixoto
graph-tool
Commits
912d9b24
Commit
912d9b24
authored
Oct 10, 2010
by
Tiago Peixoto
Browse files
Fix compilation problem with older GCC versions
parent
6b3e6269
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/graph/generation/graph_geometric.hh
View file @
912d9b24
...
...
@@ -19,7 +19,12 @@
#define GRAPH_GEOMETRIC_HH
#include
<iostream>
#include
<tr1/unordered_map>
#if (GCC_VERSION >= 40400)
# include <tr1/unordered_map>
#else
# include <boost/tr1/unordered_map.hpp>
#endif
#include
<boost/functional/hash.hpp>
#include
"graph_util.hh"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment