diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-04-30 17:35:11 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-04-30 17:35:11 +0000 |
commit | 293b13350c2fbae8a64b0b0beb440cb859968c8c (patch) | |
tree | ef358b29e31504afac3129fe3b74d92ae6c7cd1a /utils | |
parent | 7f09dd2f63f502731fd61171c59504187dd74592 (diff) | |
download | external_llvm-293b13350c2fbae8a64b0b0beb440cb859968c8c.zip external_llvm-293b13350c2fbae8a64b0b0beb440cb859968c8c.tar.gz external_llvm-293b13350c2fbae8a64b0b0beb440cb859968c8c.tar.bz2 |
Change forward declaration of MultiClass to use the "struct" keyword instead
of "class", so that it matches the subsequent definition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@70498 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rw-r--r-- | utils/TableGen/Record.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h index 615eceb..f76de7d 100644 --- a/utils/TableGen/Record.h +++ b/utils/TableGen/Record.h @@ -53,7 +53,7 @@ class VarListElementInit; // Other classes. class Record; class RecordVal; -class MultiClass; +struct MultiClass; //===----------------------------------------------------------------------===// // Type Classes |