commit | 26b815fa8c62e42b4c465e02c72e64c558a6b6ad | [log] [tgz] |
---|---|---|
author | Brad Bishop <bradleyb@fuzziesquirrel.com> | Wed Jan 04 13:32:47 2017 -0500 |
committer | Brad Bishop <bradleyb@fuzziesquirrel.com> | Fri Jan 13 16:26:06 2017 -0500 |
tree | 7bbb6c3c5733016129043ef3fe979b4617da7bc8 | |
parent | 9c7b6e0668d91f8a8513ca11495e1e309d373535 [diff] [blame] |
Replace include guards with #pragma once Change-Id: I16adc78d397e3239440206e8e70ebbd5e0963adb Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/argument.hpp b/argument.hpp index 3cb7e68..ed2399a 100644 --- a/argument.hpp +++ b/argument.hpp
@@ -1,5 +1,5 @@ -#ifndef __ARGUMENT_H -#define __ARGUMENT_H +#pragma once + #include <getopt.h> #include <map> #include <string> @@ -25,6 +25,4 @@ ArgumentParser() {}; }; -#endif - // vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4