150
|
1 //===--- PPCallbacks.cpp - Callbacks for Preprocessor actions ---*- C++ -*-===//
|
|
2 //
|
|
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
4 // See https://llvm.org/LICENSE.txt for license information.
|
|
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
6 //
|
|
7 //===----------------------------------------------------------------------===//
|
|
8
|
|
9 #include "clang/Lex/PPCallbacks.h"
|
173
|
10 #include "clang/Basic/FileManager.h"
|
150
|
11
|
|
12 using namespace clang;
|
|
13
|
173
|
14 // Out of line key method.
|
|
15 PPCallbacks::~PPCallbacks() = default;
|
|
16
|
|
17 void PPCallbacks::HasInclude(SourceLocation Loc, StringRef FileName,
|
252
|
18 bool IsAngled, OptionalFileEntryRef File,
|
173
|
19 SrcMgr::CharacteristicKind FileType) {}
|
|
20
|
|
21 // Out of line key method.
|
|
22 PPChainedCallbacks::~PPChainedCallbacks() = default;
|
|
23
|
|
24 void PPChainedCallbacks::HasInclude(SourceLocation Loc, StringRef FileName,
|
252
|
25 bool IsAngled, OptionalFileEntryRef File,
|
173
|
26 SrcMgr::CharacteristicKind FileType) {
|
|
27 First->HasInclude(Loc, FileName, IsAngled, File, FileType);
|
|
28 Second->HasInclude(Loc, FileName, IsAngled, File, FileType);
|
|
29 }
|