diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-16 22:21:38 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-02-16 22:21:38 +0000 |
commit | 20b16ace169c1cdd9c10935a590d0ef3a38e98af (patch) | |
tree | 193711c54f2fe9e75d002e0dbb997af20cafd067 /clang/lib | |
parent | 2b7dd6b1479da2078765486c30d4521216de28bd (diff) | |
download | bcm5719-llvm-20b16ace169c1cdd9c10935a590d0ef3a38e98af.tar.gz bcm5719-llvm-20b16ace169c1cdd9c10935a590d0ef3a38e98af.zip |
Use trailing documentation comments properly
Patch by Alexander Zinenko.
llvm-svn: 175376
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Rewrite/Frontend/InclusionRewriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp b/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp index 78e6af40915..d95fb073b1e 100644 --- a/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp +++ b/clang/lib/Rewrite/Frontend/InclusionRewriter.cpp @@ -39,7 +39,7 @@ class InclusionRewriter : public PPCallbacks { bool ShowLineMarkers; ///< Show #line markers. bool UseLineDirective; ///< Use of line directives or line markers. typedef std::map<unsigned, FileChange> FileChangeMap; - FileChangeMap FileChanges; /// Tracks which files were included where. + FileChangeMap FileChanges; ///< Tracks which files were included where. /// Used transitively for building up the FileChanges mapping over the /// various \c PPCallbacks callbacks. FileChangeMap::iterator LastInsertedFileChange; |