From 293b13350c2fbae8a64b0b0beb440cb859968c8c Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Thu, 30 Apr 2009 17:35:11 +0000 Subject: [PATCH] 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 --- utils/TableGen/Record.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/TableGen/Record.h b/utils/TableGen/Record.h index 615ecebecf8..f76de7d4ef3 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 -- 2.34.1