diff options
author | rubidium <rubidium@openttd.org> | 2008-05-06 15:11:33 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-05-06 15:11:33 +0000 |
commit | d03994098be29bd48f3b715c533ffac3b1315eb0 (patch) | |
tree | 6bfd044ea899467ce35f766d2c1c8a4e2df7dea9 /src/core | |
parent | fb938a2cb3fb7cfe6ca447dca5fc28bac78ed2e8 (diff) | |
download | openttd-d03994098be29bd48f3b715c533ffac3b1315eb0.tar.xz |
(svn r12971) -Documentation: add @file in files that missed them and add something more than whitespace as description of files that don't have a description.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/alloc_func.cpp | 2 | ||||
-rw-r--r-- | src/core/alloc_type.hpp | 1 | ||||
-rw-r--r-- | src/core/bitmath_func.cpp | 2 | ||||
-rw-r--r-- | src/core/bitmath_func.hpp | 2 | ||||
-rw-r--r-- | src/core/endian_func.hpp | 2 | ||||
-rw-r--r-- | src/core/random_func.cpp | 2 | ||||
-rw-r--r-- | src/core/random_func.hpp | 2 |
7 files changed, 6 insertions, 7 deletions
diff --git a/src/core/alloc_func.cpp b/src/core/alloc_func.cpp index f399aadf8..028335d76 100644 --- a/src/core/alloc_func.cpp +++ b/src/core/alloc_func.cpp @@ -1,6 +1,6 @@ /* $Id$ */ -/** @file alloc_func.cpp functions to 'handle' memory allocation errors */ +/** @file alloc_func.cpp Functions to 'handle' memory allocation errors */ #include "../stdafx.h" #include "alloc_func.hpp" diff --git a/src/core/alloc_type.hpp b/src/core/alloc_type.hpp index 872558fb3..1710e9a4d 100644 --- a/src/core/alloc_type.hpp +++ b/src/core/alloc_type.hpp @@ -1,4 +1,3 @@ - /* $Id$ */ /** @file alloc_type.hpp Helper types related to the allocation of memory */ diff --git a/src/core/bitmath_func.cpp b/src/core/bitmath_func.cpp index 614caa53f..1b8662386 100644 --- a/src/core/bitmath_func.cpp +++ b/src/core/bitmath_func.cpp @@ -1,6 +1,6 @@ /* $Id$ */ -/** @file bitmath_func.cpp */ +/** @file bitmath_func.cpp Functions related to bit mathematics. */ #include "../stdafx.h" #include "bitmath_func.hpp" diff --git a/src/core/bitmath_func.hpp b/src/core/bitmath_func.hpp index 9042e6a7e..775ae8338 100644 --- a/src/core/bitmath_func.hpp +++ b/src/core/bitmath_func.hpp @@ -1,6 +1,6 @@ /* $Id$ */ -/** @file bitmath_func.hpp */ +/** @file bitmath_func.hpp Functions related to bit mathematics. */ #ifndef BITMATH_FUNC_HPP #define BITMATH_FUNC_HPP diff --git a/src/core/endian_func.hpp b/src/core/endian_func.hpp index 4e2e948d5..71b81059c 100644 --- a/src/core/endian_func.hpp +++ b/src/core/endian_func.hpp @@ -1,6 +1,6 @@ /* $Id$ */ -/** @file endian_func.hpp */ +/** @file endian_func.hpp Function to handling different endian machines. */ #ifndef ENDIAN_FUNC_H #define ENDIAN_FUNC_H diff --git a/src/core/random_func.cpp b/src/core/random_func.cpp index d51e59eeb..c2ff9d49e 100644 --- a/src/core/random_func.cpp +++ b/src/core/random_func.cpp @@ -1,6 +1,6 @@ /* $Id$ */ -/** @file random_func.cpp */ +/** @file random_func.cpp Implementation of the pseudo random generator. */ #include "../stdafx.h" #include "random_func.hpp" diff --git a/src/core/random_func.hpp b/src/core/random_func.hpp index a301b5b3b..cd273cb08 100644 --- a/src/core/random_func.hpp +++ b/src/core/random_func.hpp @@ -1,6 +1,6 @@ /* $Id$ */ -/** @file random_func.hpp */ +/** @file random_func.hpp Pseudo random number generator. */ #ifndef RANDOM_FUNC_HPP #define RANDOM_FUNC_HPP |