[Lemon-commits] Alpar Juttner: Use standard #ifndef/#define for ...
Lemon HG
hg at lemon.cs.elte.hu
Wed Sep 17 16:08:36 CEST 2008
details: http://lemon.cs.elte.hu/hg/lemon/rev/1c2ac7deb5d8
changeset: 261:1c2ac7deb5d8
user: Alpar Juttner <alpar [at] cs.elte.hu>
date: Tue Sep 16 08:41:08 2008 +0100
description:
Use standard #ifndef/#define for avoiding multiple include.
diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
lemon/arg_parser.h | 6 +++---
diffs (20 lines):
diff -r c691064dfd4f -r 1c2ac7deb5d8 lemon/arg_parser.h
--- a/lemon/arg_parser.h Thu Sep 11 11:10:44 2008 +0100
+++ b/lemon/arg_parser.h Tue Sep 16 08:41:08 2008 +0100
@@ -16,8 +16,8 @@
*
*/
-#ifndef LEMON_ARG_PARSER
-#define LEMON_ARG_PARSER
+#ifndef LEMON_ARG_PARSER_H
+#define LEMON_ARG_PARSER_H
#include <vector>
#include <map>
@@ -382,4 +382,4 @@
};
}
-#endif // LEMON_ARG_PARSER
+#endif // LEMON_ARG_PARSER_H
More information about the Lemon-commits
mailing list