aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-06-08 23:13:42 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-06-08 23:13:42 +0000
commit49fdccb4595862828aa5cadc1497d466a8031dda (patch)
tree8386d3e85f6ab7f96896cd9261c2ee02828d481a /lib
parent0abbdfe561377b7af8eba6fc87757a46342f7a10 (diff)
Convert comments to proper Doxygen comments.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@158241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Rewrite/InclusionRewriter.cpp10
-rw-r--r--lib/Sema/SemaCodeComplete.cpp6
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/Rewrite/InclusionRewriter.cpp b/lib/Rewrite/InclusionRewriter.cpp
index 439d777f6c..c6a4e24c7a 100644
--- a/lib/Rewrite/InclusionRewriter.cpp
+++ b/lib/Rewrite/InclusionRewriter.cpp
@@ -33,11 +33,11 @@ class InclusionRewriter : public PPCallbacks {
FileChange(SourceLocation From) : From(From) {
}
};
- Preprocessor &PP; //< Used to find inclusion directives.
- SourceManager &SM; //< Used to read and manage source files.
- raw_ostream &OS; //< The destination stream for rewritten contents.
- bool ShowLineMarkers; //< Show #line markers.
- bool UseLineDirective; //< Use of line directives or line markers.
+ Preprocessor &PP; ///< Used to find inclusion directives.
+ SourceManager &SM; ///< Used to read and manage source files.
+ raw_ostream &OS; ///< The destination stream for rewritten contents.
+ 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.
/// Used transitively for building up the FileChanges mapping over the
diff --git a/lib/Sema/SemaCodeComplete.cpp b/lib/Sema/SemaCodeComplete.cpp
index 50d3f30549..f8a9b4c2d1 100644
--- a/lib/Sema/SemaCodeComplete.cpp
+++ b/lib/Sema/SemaCodeComplete.cpp
@@ -4620,9 +4620,9 @@ void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
/// \brief Descripts the kind of Objective-C method that we want to find
/// via code completion.
enum ObjCMethodKind {
- MK_Any, //< Any kind of method, provided it means other specified criteria.
- MK_ZeroArgSelector, //< Zero-argument (unary) selector.
- MK_OneArgSelector //< One-argument selector.
+ MK_Any, ///< Any kind of method, provided it means other specified criteria.
+ MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
+ MK_OneArgSelector ///< One-argument selector.
};
static bool isAcceptableObjCSelector(Selector Sel,