diff options
| author | oy <Tom_Adams@web.de> | 2011-04-13 20:22:10 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-04-13 20:22:10 +0200 |
| commit | e6f0318bdfa49bde503742c856c8415f9b2c8018 (patch) | |
| tree | 5726e025088ea0173a28c44e9776f70203a8f413 /src/base | |
| parent | aeec62266b2f23a16b54dfe58b113efcd7adc83d (diff) | |
| download | zcatch-e6f0318bdfa49bde503742c856c8415f9b2c8018.tar.gz zcatch-e6f0318bdfa49bde503742c856c8415f9b2c8018.zip | |
added "fixed some header guards and added a script to fix them all!" by Choupom
Diffstat (limited to 'src/base')
| -rw-r--r-- | src/base/detect.h | 4 | ||||
| -rw-r--r-- | src/base/tl/algorithm.h | 4 | ||||
| -rw-r--r-- | src/base/tl/allocator.h | 4 | ||||
| -rw-r--r-- | src/base/tl/array.h | 4 | ||||
| -rw-r--r-- | src/base/tl/base.h | 4 | ||||
| -rw-r--r-- | src/base/tl/range.h | 4 | ||||
| -rw-r--r-- | src/base/tl/sorted_array.h | 4 | ||||
| -rw-r--r-- | src/base/tl/string.h | 4 |
8 files changed, 16 insertions, 16 deletions
diff --git a/src/base/detect.h b/src/base/detect.h index ca2efb9c..534339dd 100644 --- a/src/base/detect.h +++ b/src/base/detect.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef BASELIB_FILE_CONFIG_H -#define BASELIB_FILE_CONFIG_H +#ifndef BASE_DETECT_H +#define BASE_DETECT_H /* this file detected the family, platform and architecture diff --git a/src/base/tl/algorithm.h b/src/base/tl/algorithm.h index 4a165db0..c5cd74c3 100644 --- a/src/base/tl/algorithm.h +++ b/src/base/tl/algorithm.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef TL_FILE_ALGORITHM_HPP -#define TL_FILE_ALGORITHM_HPP +#ifndef BASE_TL_ALGORITHM_H +#define BASE_TL_ALGORITHM_H #include "range.h" diff --git a/src/base/tl/allocator.h b/src/base/tl/allocator.h index f6d8fc34..d12347e3 100644 --- a/src/base/tl/allocator.h +++ b/src/base/tl/allocator.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef TL_FILE_ALLOCATOR_HPP -#define TL_FILE_ALLOCATOR_HPP +#ifndef BASE_TL_ALLOCATOR_H +#define BASE_TL_ALLOCATOR_H template <class T> class allocator_default diff --git a/src/base/tl/array.h b/src/base/tl/array.h index 6aff3c71..0cee2afc 100644 --- a/src/base/tl/array.h +++ b/src/base/tl/array.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef TL_FILE_ARRAY_HPP -#define TL_FILE_ARRAY_HPP +#ifndef BASE_TL_ARRAY_H +#define BASE_TL_ARRAY_H #include "range.h" #include "allocator.h" diff --git a/src/base/tl/base.h b/src/base/tl/base.h index 59951c68..2fcb14eb 100644 --- a/src/base/tl/base.h +++ b/src/base/tl/base.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef TL_FILE_BASE_HPP -#define TL_FILE_BASE_HPP +#ifndef BASE_TL_BASE_H +#define BASE_TL_BASE_H #include <base/system.h> diff --git a/src/base/tl/range.h b/src/base/tl/range.h index 3c1c89f3..25047d31 100644 --- a/src/base/tl/range.h +++ b/src/base/tl/range.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef TL_FILE_RANGE_HPP -#define TL_FILE_RANGE_HPP +#ifndef BASE_TL_RANGE_H +#define BASE_TL_RANGE_H #include "base.h" diff --git a/src/base/tl/sorted_array.h b/src/base/tl/sorted_array.h index 7c45cf28..94ccd543 100644 --- a/src/base/tl/sorted_array.h +++ b/src/base/tl/sorted_array.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef TL_FILE_SORTED_ARRAY_HPP -#define TL_FILE_SORTED_ARRAY_HPP +#ifndef BASE_TL_SORTED_ARRAY_H +#define BASE_TL_SORTED_ARRAY_H #include "algorithm.h" #include "array.h" diff --git a/src/base/tl/string.h b/src/base/tl/string.h index 96c2dc66..18fab4d4 100644 --- a/src/base/tl/string.h +++ b/src/base/tl/string.h @@ -1,7 +1,7 @@ /* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ -#ifndef TL_FILE_STRING_HPP -#define TL_FILE_STRING_HPP +#ifndef BASE_TL_STRING_H +#define BASE_TL_STRING_H #include "base.h" #include "allocator.h" |