From b7417ec95448c50a996309eef77bbfdedb8dd4cb Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 3 Oct 2014 10:02:36 +0200 Subject: [PATCH] fix name of include guard --- DataStructures/NodeBasedGraph.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DataStructures/NodeBasedGraph.h b/DataStructures/NodeBasedGraph.h index 14b5432d9..4ed864cfd 100644 --- a/DataStructures/NodeBasedGraph.h +++ b/DataStructures/NodeBasedGraph.h @@ -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