summaryrefslogtreecommitdiffstats
path: root/include/llvm/System/IncludeFile.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-03 02:55:14 +0000
committerDan Gohman <gohman@apple.com>2009-03-03 02:55:14 +0000
commit0f8b53f19d29013ab18f3d444cea1e6305405611 (patch)
treed6604c4df67bec3936ed3c7a3b92a312f42ea7a8 /include/llvm/System/IncludeFile.h
parentacb51a3037dcdb5fe074e429f83c4da25aa68e83 (diff)
downloadexternal_llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.zip
external_llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.tar.gz
external_llvm-0f8b53f19d29013ab18f3d444cea1e6305405611.tar.bz2
Fix a bunch of Doxygen syntax issues. Escape special characters,
and put @file directives on their own comment line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65920 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/System/IncludeFile.h')
-rw-r--r--include/llvm/System/IncludeFile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/System/IncludeFile.h b/include/llvm/System/IncludeFile.h
index 6103e44..3268ea2 100644
--- a/include/llvm/System/IncludeFile.h
+++ b/include/llvm/System/IncludeFile.h
@@ -64,7 +64,8 @@ namespace llvm {
/// helps to resolve that problem. The basic strategy is to use this class in
/// a header file and pass the address of a variable to the constructor. If the
/// variable is defined in the header file's corresponding .cpp file then all
-/// tools/libraries that #include the header file will require the .cpp as well.
+/// tools/libraries that \#include the header file will require the .cpp as
+/// well.
/// For example:<br/>
/// <tt>extern int LinkMyCodeStub;</tt><br/>
/// <tt>static IncludeFile LinkMyModule(&LinkMyCodeStub);</tt><br/>