summaryrefslogtreecommitdiff
path: root/src/depend/depend.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2012-01-01 17:22:32 +0000
committeralberth <alberth@openttd.org>2012-01-01 17:22:32 +0000
commit4af8c2d5e17fe04d0e352977993fced13e08b787 (patch)
treeaf38f024a38bf020a217ee4849f72877541399c7 /src/depend/depend.cpp
parentda460f6928851dee007fab7637c75a242398370c (diff)
downloadopenttd-4af8c2d5e17fe04d0e352977993fced13e08b787.tar.xz
(svn r23704) -Doc: Doxygen comment fixes and additions.
Diffstat (limited to 'src/depend/depend.cpp')
-rw-r--r--src/depend/depend.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/depend/depend.cpp b/src/depend/depend.cpp
index b9c8f7a23..67ceec25f 100644
--- a/src/depend/depend.cpp
+++ b/src/depend/depend.cpp
@@ -149,13 +149,13 @@ enum Token {
TOKEN_ELSE, ///< (#)else in code
TOKEN_ENDIF, ///< (#)endif in code
TOKEN_UNDEF, ///< (#)undef in code
- TOKEN_OR, ///< '||' within #if expression
- TOKEN_AND, ///< '&&' within #if expression
- TOKEN_DEFINED, ///< 'defined' within #if expression
- TOKEN_OPEN, ///< '(' within #if expression
- TOKEN_CLOSE, ///< ')' within #if expression
- TOKEN_NOT, ///< '!' within #if expression
- TOKEN_ZERO, ///< '0' within #if expression
+ TOKEN_OR, ///< '||' within <tt>#if</tt> expression
+ TOKEN_AND, ///< '&&' within <tt>#if</tt> expression
+ TOKEN_DEFINED, ///< 'defined' within <tt>#if</tt> expression
+ TOKEN_OPEN, ///< '(' within <tt>#if</tt> expression
+ TOKEN_CLOSE, ///< ')' within <tt>#if</tt> expression
+ TOKEN_NOT, ///< '!' within <tt>#if</tt> expression
+ TOKEN_ZERO, ///< '0' within <tt>#if</tt> expression
TOKEN_INCLUDE, ///< (#)include in code
};