Skip to content

Commit 22b6b8d

Browse files
committed
[clang][Interp][NFC] Remove Pointer.h include from Function.h
1 parent bf0534e commit 22b6b8d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

clang/lib/AST/Interp/Function.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
#ifndef LLVM_CLANG_AST_INTERP_FUNCTION_H
1616
#define LLVM_CLANG_AST_INTERP_FUNCTION_H
1717

18-
#include "Pointer.h"
1918
#include "Source.h"
19+
#include "Descriptor.h"
2020
#include "clang/AST/ASTLambda.h"
2121
#include "clang/AST/Decl.h"
2222
#include "llvm/Support/raw_ostream.h"
@@ -25,6 +25,7 @@ namespace clang {
2525
namespace interp {
2626
class Program;
2727
class ByteCodeEmitter;
28+
class Pointer;
2829
enum PrimType : uint32_t;
2930

3031
/// Describes a scope block.

clang/lib/AST/Interp/InterpStack.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#include "Boolean.h"
1111
#include "Floating.h"
1212
#include "Integral.h"
13+
#include "Pointer.h"
1314
#include <cassert>
1415
#include <cstdlib>
1516

0 commit comments

Comments
 (0)