fix name of include guard

This commit is contained in:
Dennis Luxen 2014-10-03 10:02:36 +02:00
parent 61b861f0e5
commit b7417ec954

View File

@ -1,5 +1,5 @@
#ifndef __NODE_BASED_GRAPH_H__
#define __NODE_BASED_GRAPH_H__
#ifndef NODE_BASED_GRAPH_H_
#define NODE_BASED_GRAPH_H_
#include "DynamicGraph.h"
#include "ImportEdge.h"
@ -241,4 +241,4 @@ SimpleNodeBasedDynamicGraphFromEdges(int number_of_nodes, std::vector<SimpleEdge
return graph;
}
#endif // __NODE_BASED_GRAPH_H__
#endif // NODE_BASED_GRAPH_H_