diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-02-07 00:15:38 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2009-02-07 00:15:38 +0000 |
commit | 112a9766164c8f5124a380b7069428f42e4db25b (patch) | |
tree | 590ecdb80f47c586baa908e96ada2aa558a97cd0 /clang/lib/Sema/SemaInherit.h | |
parent | ad41b838167411ddf3d1aeb43ce3436d95834e39 (diff) | |
download | bcm5719-llvm-112a9766164c8f5124a380b7069428f42e4db25b.tar.gz bcm5719-llvm-112a9766164c8f5124a380b7069428f42e4db25b.zip |
Implement dereferencing of pointers-to-member.
llvm-svn: 63983
Diffstat (limited to 'clang/lib/Sema/SemaInherit.h')
-rw-r--r-- | clang/lib/Sema/SemaInherit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaInherit.h b/clang/lib/Sema/SemaInherit.h index eb169a2982b..311c136a0ff 100644 --- a/clang/lib/Sema/SemaInherit.h +++ b/clang/lib/Sema/SemaInherit.h @@ -16,6 +16,7 @@ #ifndef LLVM_CLANG_SEMA_INHERIT_H #define LLVM_CLANG_SEMA_INHERIT_H +#include "Sema.h" #include "clang/AST/DeclarationName.h" #include "clang/AST/DeclBase.h" #include "clang/AST/Type.h" @@ -25,7 +26,6 @@ #include <map> namespace clang { - class Sema; class CXXBaseSpecifier; class CXXRecordType; |