From a2dc430a38707294710c009415e39552106a72aa Mon Sep 17 00:00:00 2001 From: Matthew Barr Date: Tue, 27 Sep 2016 15:56:40 +1000 Subject: [PATCH] Header guards --- cmake/config.h.in | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/cmake/config.h.in b/cmake/config.h.in index c7b577c2..5434668e 100644 --- a/cmake/config.h.in +++ b/cmake/config.h.in @@ -1,5 +1,8 @@ /* used by cmake */ +#ifndef CONFIG_H_ +#define CONFIG_H_ + /* "Define if the build is 32 bit" */ #cmakedefine ARCH_32_BIT @@ -91,3 +94,5 @@ /* define if reverse_graph requires patch for boost 1.62.0 */ #cmakedefine BOOST_REVGRAPH_PATCH + +#endif /* CONFIG_H_ */