fix: Add missing include guards to gflags/config.h
authorAndreas Schuh <andreas.schuh.84@gmail.com>
Mon, 29 Feb 2016 19:17:00 +0000 (19:17 +0000)
committerAndreas Schuh <andreas.schuh.84@gmail.com>
Mon, 29 Feb 2016 19:17:00 +0000 (19:17 +0000)
src/config.h.in

index a8708da..ee92210 100644 (file)
@@ -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
 
 #  endif
 #  include "windows_port.h"
 #endif
+
+
+#endif // GFLAGS_CONFIG_H_