summaryrefslogtreecommitdiffstats
path: root/doc/arch.doc
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2013-04-02 19:27:49 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2013-04-02 19:27:49 (GMT)
commit465c47b8d0e945f9911c579c0c93deaf87c20fd6 (patch)
tree23804fcf753b3487b9a1ea28d4d28b71fa4ae208 /doc/arch.doc
parent92a0f3fc0733931284deebb74a1d36ca7a290bfe (diff)
downloadDoxygen-465c47b8d0e945f9911c579c0c93deaf87c20fd6.zip
Doxygen-465c47b8d0e945f9911c579c0c93deaf87c20fd6.tar.gz
Doxygen-465c47b8d0e945f9911c579c0c93deaf87c20fd6.tar.bz2
Release-1.8.3.1-20130402
Diffstat (limited to 'doc/arch.doc')
-rw-r--r--doc/arch.doc4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/arch.doc b/doc/arch.doc
index c68d2f8..62661bc 100644
--- a/doc/arch.doc
+++ b/doc/arch.doc
@@ -58,7 +58,7 @@ of macros. This is to allow macro names to appear in the type of
function parameters for instance.
Another difference is that the preprocessor parses, but not actually includes
-code when it encounters a \#include (with the exception of \#include
+code when it encounters a \c \#include (with the exception of \c \#include
found inside { ... } blocks). The reasons behind this deviation from
the standard is to prevent feeding multiple definitions of the
same functions/classes to doxygen's parser. If all source files would
@@ -67,7 +67,7 @@ definitions (and their documentation) would be present in each
translation unit.
The preprocessor is written using \c flex and can be found in
-\c src/pre.l. For condition blocks (\#if) evaluation of constant expressions
+\c src/pre.l. For condition blocks (\c \#if) evaluation of constant expressions
is needed. For this a \c yacc based parser is used, which can be found
in \c src/constexp.y and \c src/constexp.l.