aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-03-24 16:59:08 +0000
committerDouglas Gregor <dgregor@apple.com>2010-03-24 16:59:08 +0000
commit9ff659b1950fa67958a057b97fdd36aadfb8017e (patch)
tree65582d10e947309262c5cf70ebd9eb65be781690 /lib/CodeGen
parentceb43b662bf09b44a08714e8f9d222780ca979d7 (diff)
Change two class forward declarations to struct forward declarations, silencing a Clang warning
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@99405 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r--lib/CodeGen/Mangle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/Mangle.h b/lib/CodeGen/Mangle.h
index 759cfc3bef..34b2ab46bb 100644
--- a/lib/CodeGen/Mangle.h
+++ b/lib/CodeGen/Mangle.h
@@ -34,8 +34,8 @@ namespace clang {
class VarDecl;
namespace CodeGen {
- class ThisAdjustment;
- class ThunkInfo;
+ struct ThisAdjustment;
+ struct ThunkInfo;
class CovariantThunkAdjustment;
class ThunkAdjustment;