From 545e9df567d3d2193da89a6469b6204a08bf8b01 Mon Sep 17 00:00:00 2001 From: Andreas Schuh Date: Mon, 29 Feb 2016 19:17:00 +0000 Subject: [PATCH] fix: Add missing include guards to gflags/config.h --- src/config.h.in | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/config.h.in b/src/config.h.in index a8708da..ee92210 100644 --- a/src/config.h.in +++ b/src/config.h.in @@ -2,6 +2,10 @@ // Note: This header file is only used internally. It is not part of public interface! +#ifndef GFLAGS_CONFIG_H_ +#define GFLAGS_CONFIG_H_ + + // --------------------------------------------------------------------------- // System checks @@ -110,3 +114,6 @@ # endif # include "windows_port.h" #endif + + +#endif // GFLAGS_CONFIG_H_