Skip to content

Commit

Permalink
[clang][Interp][NFC] Remove Pointer.h include from Function.h
Browse files Browse the repository at this point in the history
  • Loading branch information
tbaederr committed Oct 12, 2023
1 parent bf0534e commit 22b6b8d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion clang/lib/AST/Interp/Function.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
#ifndef LLVM_CLANG_AST_INTERP_FUNCTION_H
#define LLVM_CLANG_AST_INTERP_FUNCTION_H

#include "Pointer.h"
#include "Source.h"
#include "Descriptor.h"
#include "clang/AST/ASTLambda.h"
#include "clang/AST/Decl.h"
#include "llvm/Support/raw_ostream.h"
Expand All @@ -25,6 +25,7 @@ namespace clang {
namespace interp {
class Program;
class ByteCodeEmitter;
class Pointer;
enum PrimType : uint32_t;

/// Describes a scope block.
Expand Down
1 change: 1 addition & 0 deletions clang/lib/AST/Interp/InterpStack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
#include "Boolean.h"
#include "Floating.h"
#include "Integral.h"
#include "Pointer.h"
#include <cassert>
#include <cstdlib>

Expand Down

0 comments on commit 22b6b8d

Please sign in to comment.