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 | 1a1dc6c0a6f6a3bf7a1e5187c37581624257f8a8 (patch) | |
tree | ef358b29e31504afac3129fe3b74d92ae6c7cd1a /utils | |
parent | 0d833b7e3166bdbc89cef7d8d5ad37faa50df355 (diff) | |
download | external_llvm-1a1dc6c0a6f6a3bf7a1e5187c37581624257f8a8.zip external_llvm-1a1dc6c0a6f6a3bf7a1e5187c37581624257f8a8.tar.gz external_llvm-1a1dc6c0a6f6a3bf7a1e5187c37581624257f8a8.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 |