diff options
Diffstat (limited to 'unittests/Lex/PPCallbacksTest.cpp')
| -rw-r--r-- | unittests/Lex/PPCallbacksTest.cpp | 24 | 
1 files changed, 10 insertions, 14 deletions
diff --git a/unittests/Lex/PPCallbacksTest.cpp b/unittests/Lex/PPCallbacksTest.cpp index bb27bac6ed66..94812fc93de9 100644 --- a/unittests/Lex/PPCallbacksTest.cpp +++ b/unittests/Lex/PPCallbacksTest.cpp @@ -42,8 +42,7 @@ class VoidModuleLoader : public ModuleLoader {    void makeModuleVisible(Module *Mod,                           Module::NameVisibilityKind Visibility, -                         SourceLocation ImportLoc, -                         bool Complain) override { } +                         SourceLocation ImportLoc) override { }    GlobalModuleIndex *loadGlobalModuleIndex(SourceLocation TriggerLoc) override      { return nullptr; } @@ -54,15 +53,11 @@ class VoidModuleLoader : public ModuleLoader {  // Stub to collect data from InclusionDirective callbacks.  class InclusionDirectiveCallbacks : public PPCallbacks {  public: -  void InclusionDirective(SourceLocation HashLoc,  -    const Token &IncludeTok,  -    StringRef FileName,  -    bool IsAngled,  -    CharSourceRange FilenameRange,  -    const FileEntry *File,  -    StringRef SearchPath,  -    StringRef RelativePath,  -    const Module *Imported) { +  void InclusionDirective(SourceLocation HashLoc, const Token &IncludeTok, +                          StringRef FileName, bool IsAngled, +                          CharSourceRange FilenameRange, const FileEntry *File, +                          StringRef SearchPath, StringRef RelativePath, +                          const Module *Imported) override {        this->HashLoc = HashLoc;        this->IncludeTok = IncludeTok;        this->FileName = FileName.str(); @@ -95,9 +90,10 @@ public:    PragmaOpenCLExtensionCallbacks() : Name("Not called."), State(99) {}; -  void PragmaOpenCLExtension( -    clang::SourceLocation NameLoc, const clang::IdentifierInfo *Name, -    clang::SourceLocation StateLoc, unsigned State) { +  void PragmaOpenCLExtension(clang::SourceLocation NameLoc, +                             const clang::IdentifierInfo *Name, +                             clang::SourceLocation StateLoc, +                             unsigned State) override {        this->NameLoc = NameLoc;        this->Name = Name->getName();        this->StateLoc = StateLoc;  | 
