aboutsummaryrefslogtreecommitdiff
path: root/args.hxx
diff options
context:
space:
mode:
authorTaylor C. Richberger <Taywee@gmx.com>2016-08-16 09:13:13 -0600
committerTaylor C. Richberger <Taywee@gmx.com>2016-08-16 09:13:13 -0600
commita60102277fabd086def3d641a05cb6c79190463e (patch)
treefd6981715fbbb645c6f4a298df151897e0fa94db /args.hxx
parentIncrease warnings (diff)
downloadargs.hxx-a60102277fabd086def3d641a05cb6c79190463e.tar.xz
include guards
Diffstat (limited to 'args.hxx')
-rw-r--r--args.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/args.hxx b/args.hxx
index 7be2305..da93fa1 100644
--- a/args.hxx
+++ b/args.hxx
@@ -25,6 +25,9 @@
* The important stuff is done inside the args namespace
*/
+#ifndef ARGS_HXX
+#define ARGS_HXX
+
#include <algorithm>
#include <exception>
#include <functional>
@@ -2051,3 +2054,5 @@ namespace args
}
};
}
+
+#endif