From: Benjamin Kramer Date: Tue, 11 Aug 2009 17:27:20 +0000 (+0000) Subject: Fix struct/class mismatch. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=754bdacf4675a75031ece44aa23f82c000cd1be8;p=oota-llvm.git Fix struct/class mismatch. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78686 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/Support/ConstantFolder.h b/include/llvm/Support/ConstantFolder.h index 422d1ad00d2..ab9ecc69fc7 100644 --- a/include/llvm/Support/ConstantFolder.h +++ b/include/llvm/Support/ConstantFolder.h @@ -21,7 +21,7 @@ namespace llvm { -class LLVMContext; +struct LLVMContext; /// ConstantFolder - Create constants with minimum, target independent, folding. class ConstantFolder { diff --git a/include/llvm/Support/NoFolder.h b/include/llvm/Support/NoFolder.h index b89c084b586..d5198a2ad89 100644 --- a/include/llvm/Support/NoFolder.h +++ b/include/llvm/Support/NoFolder.h @@ -28,7 +28,7 @@ namespace llvm { -class LLVMContext; +struct LLVMContext; /// NoFolder - Create "constants" (actually, values) with no folding. class NoFolder {