From 3697050e629a7ed6b2703002d4b21a9c987ded5f Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Tue, 14 Oct 2014 08:45:13 +0200 Subject: [PATCH] Add include guards to cxxopts.hpp --- src/cxxopts.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/cxxopts.hpp b/src/cxxopts.hpp index bfbe7b7..d20dcc5 100644 --- a/src/cxxopts.hpp +++ b/src/cxxopts.hpp @@ -22,6 +22,9 @@ THE SOFTWARE. */ +#ifndef CXX_OPTS_HPP +#define CXX_OPTS_HPP + #include #include #include @@ -469,3 +472,5 @@ namespace cxxopts }; } + +#endif //CXX_OPTS_HPP