diff options
Diffstat (limited to 'include/clang/Sema/MultiplexExternalSemaSource.h')
| -rw-r--r-- | include/clang/Sema/MultiplexExternalSemaSource.h | 24 | 
1 files changed, 12 insertions, 12 deletions
| diff --git a/include/clang/Sema/MultiplexExternalSemaSource.h b/include/clang/Sema/MultiplexExternalSemaSource.h index 4c242c89f3f4..86bddebcef69 100644 --- a/include/clang/Sema/MultiplexExternalSemaSource.h +++ b/include/clang/Sema/MultiplexExternalSemaSource.h @@ -42,7 +42,7 @@ private:    SmallVector<ExternalSemaSource *, 2> Sources; // doesn't own them.  public: -   +    ///Constructs a new multiplexing external sema source and appends the    /// given element to it.    /// @@ -113,7 +113,7 @@ public:    /// Get the decls that are contained in a file in the Offset/Length    /// range. \p Length can be 0 to indicate a point at \p Offset instead of -  /// a range.  +  /// a range.    void FindFileRegionDecls(FileID File, unsigned Offset,unsigned Length,                             SmallVectorImpl<Decl *> &Decls) override; @@ -125,7 +125,7 @@ public:    /// incomplete Objective-C class.    ///    /// This routine will only be invoked if the "externally completed" bit is -  /// set on the ObjCInterfaceDecl via the function  +  /// set on the ObjCInterfaceDecl via the function    /// \c ObjCInterfaceDecl::setExternallyCompleted().    void CompleteType(ObjCInterfaceDecl *Class) override; @@ -156,7 +156,7 @@ public:    /// Perform layout on the given record.    /// -  /// This routine allows the external AST source to provide an specific  +  /// This routine allows the external AST source to provide an specific    /// layout for a record, overriding the layout that would normally be    /// constructed. It is intended for clients who receive specific layout    /// details rather than source code (such as LLDB). The client is expected @@ -173,13 +173,13 @@ public:    /// expressed in bits. All of the fields must be provided with offsets.    ///    /// \param BaseOffsets The offset of each of the direct, non-virtual base -  /// classes. If any bases are not given offsets, the bases will be laid  +  /// classes. If any bases are not given offsets, the bases will be laid    /// out according to the ABI.    ///    /// \param VirtualBaseOffsets The offset of each of the virtual base classes -  /// (either direct or not). If any bases are not given offsets, the bases will  +  /// (either direct or not). If any bases are not given offsets, the bases will    /// be laid out according to the ABI. -  ///  +  ///    /// \returns true if the record layout was provided, false otherwise.    bool    layoutRecordType(const RecordDecl *Record, @@ -287,9 +287,9 @@ public:    /// Read the set of referenced selectors known to the    /// external Sema source.    /// -  /// The external source should append its own referenced selectors to the  -  /// given vector of selectors. Note that this routine  -  /// may be invoked multiple times; the external source should take care not  +  /// The external source should append its own referenced selectors to the +  /// given vector of selectors. Note that this routine +  /// may be invoked multiple times; the external source should take care not    /// to introduce the same selectors repeatedly.    void ReadReferencedSelectors(SmallVectorImpl<std::pair<Selector,                                                SourceLocation> > &Sels) override; @@ -298,7 +298,7 @@ public:    /// external Sema source.    ///    /// The external source should append its own weak, undeclared identifiers to -  /// the given vector. Note that this routine may be invoked multiple times;  +  /// the given vector. Note that this routine may be invoked multiple times;    /// the external source should take care not to introduce the same identifiers    /// repeatedly.    void ReadWeakUndeclaredIdentifiers( @@ -356,7 +356,7 @@ public:    // isa/cast/dyn_cast support    static bool classof(const MultiplexExternalSemaSource*) { return true; }    //static bool classof(const ExternalSemaSource*) { return true; } -};  +};  } // end namespace clang | 
