diff options
author | alberth <alberth@openttd.org> | 2010-12-22 11:24:38 +0000 |
---|---|---|
committer | alberth <alberth@openttd.org> | 2010-12-22 11:24:38 +0000 |
commit | 67cd2cd6becf9aa5c38235b20ebd212d37cc3dfb (patch) | |
tree | f60aa22386788c6c8ce82108a0bfd432a23532fb /src/misc | |
parent | f65a9a5515ffe0e2b5fe70a7f190dc4461873b4e (diff) | |
download | openttd-67cd2cd6becf9aa5c38235b20ebd212d37cc3dfb.tar.xz |
(svn r21594) -Codechange: Whitespace fixes in ifndef/define lines.
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/array.hpp | 4 | ||||
-rw-r--r-- | src/misc/binaryheap.hpp | 4 | ||||
-rw-r--r-- | src/misc/fixedsizearray.hpp | 4 | ||||
-rw-r--r-- | src/misc/hashtable.hpp | 4 | ||||
-rw-r--r-- | src/misc/str.hpp | 4 |
5 files changed, 10 insertions, 10 deletions
diff --git a/src/misc/array.hpp b/src/misc/array.hpp index e6850d665..3434ca21f 100644 --- a/src/misc/array.hpp +++ b/src/misc/array.hpp @@ -9,8 +9,8 @@ /** @file array.hpp Array without an explicit maximum size. */ -#ifndef ARRAY_HPP -#define ARRAY_HPP +#ifndef ARRAY_HPP +#define ARRAY_HPP #include "fixedsizearray.hpp" #include "str.hpp" diff --git a/src/misc/binaryheap.hpp b/src/misc/binaryheap.hpp index f7aedfc0a..c0aee7f2d 100644 --- a/src/misc/binaryheap.hpp +++ b/src/misc/binaryheap.hpp @@ -9,8 +9,8 @@ /** @file binaryheap.hpp Binary heap implementation. */ -#ifndef BINARYHEAP_HPP -#define BINARYHEAP_HPP +#ifndef BINARYHEAP_HPP +#define BINARYHEAP_HPP #include "../core/alloc_func.hpp" diff --git a/src/misc/fixedsizearray.hpp b/src/misc/fixedsizearray.hpp index c84938438..c9e4ea59a 100644 --- a/src/misc/fixedsizearray.hpp +++ b/src/misc/fixedsizearray.hpp @@ -9,8 +9,8 @@ /** @file fixedsizearray.hpp A fixed size array that doesn't create items until needed. */ -#ifndef FIXEDSIZEARRAY_HPP -#define FIXEDSIZEARRAY_HPP +#ifndef FIXEDSIZEARRAY_HPP +#define FIXEDSIZEARRAY_HPP #include "../core/alloc_func.hpp" diff --git a/src/misc/hashtable.hpp b/src/misc/hashtable.hpp index 9b1de9436..46ef7ca47 100644 --- a/src/misc/hashtable.hpp +++ b/src/misc/hashtable.hpp @@ -9,8 +9,8 @@ /** @file hashtable.hpp Hash table support. */ -#ifndef HASHTABLE_HPP -#define HASHTABLE_HPP +#ifndef HASHTABLE_HPP +#define HASHTABLE_HPP #include "../core/math_func.hpp" diff --git a/src/misc/str.hpp b/src/misc/str.hpp index ad1d85f62..78e5ed9fe 100644 --- a/src/misc/str.hpp +++ b/src/misc/str.hpp @@ -9,8 +9,8 @@ /** @file str.hpp String formating? */ -#ifndef STR_HPP -#define STR_HPP +#ifndef STR_HPP +#define STR_HPP #include <errno.h> #include <stdarg.h> |