diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Rewrite/InclusionRewriter.cpp | 10 | ||||
-rw-r--r-- | lib/Sema/SemaCodeComplete.cpp | 6 |
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, |