summaryrefslogtreecommitdiff
path: root/src/misc
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-02-17 02:08:53 +0000
committersmatz <smatz@openttd.org>2009-02-17 02:08:53 +0000
commitb8471e540105a2d6774d65a054e6facea823a4a6 (patch)
treed8362b79f1dad582122d2e5ff0b5413506038db0 /src/misc
parent42c0faf9e1d8a7ad17299a05f1ea68f2f45ec61e (diff)
downloadopenttd-b8471e540105a2d6774d65a054e6facea823a4a6.tar.xz
(svn r15508) -Fix: three header files had incorrect 'anti-multiple-inclusion' header
Diffstat (limited to 'src/misc')
-rw-r--r--src/misc/dbg_helpers.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/misc/dbg_helpers.h b/src/misc/dbg_helpers.h
index 7cbe57810..0cbb1c077 100644
--- a/src/misc/dbg_helpers.h
+++ b/src/misc/dbg_helpers.h
@@ -2,8 +2,8 @@
/** @file dbg_helpers.h Functions to be used for debug printings. */
-#ifndef DBG_HELPERS
-#define DBG_HELPERS
+#ifndef DBG_HELPERS_H
+#define DBG_HELPERS_H
#include <new>
#include <map>
@@ -163,4 +163,4 @@ struct DumpTarget {
}
};
-#endif /* DBG_HELPERS */
+#endif /* DBG_HELPERS_H */