fix: Add missing include guards to gflags/config.h

This commit is contained in:
Andreas Schuh 2016-02-29 19:17:00 +00:00
parent 6bd636c964
commit 545e9df567

View 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
@ -110,3 +114,6 @@
# endif
# include "windows_port.h"
#endif
#endif // GFLAGS_CONFIG_H_