diff options
author | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-09-28 01:59:17 +0000 |
---|---|---|
committer | Alkis Evlogimenos <alkis@evlogimenos.com> | 2004-09-28 01:59:17 +0000 |
commit | 148d2065e4eb60357014a39c8e0d66c908679ffd (patch) | |
tree | a26a25ba8a5cf9630c74cfc1c6d67818a7bfdf8d /include/llvm/CodeGen | |
parent | e19d7a702177205053d12305ac44853e8a30b6f4 (diff) | |
download | external_llvm-148d2065e4eb60357014a39c8e0d66c908679ffd.zip external_llvm-148d2065e4eb60357014a39c8e0d66c908679ffd.tar.gz external_llvm-148d2065e4eb60357014a39c8e0d66c908679ffd.tar.bz2 |
Use class instead of struct for defining classes. This unbreaks the
build on windows. Patch contributed by Paolo Invernizzi!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen')
-rw-r--r-- | include/llvm/CodeGen/IntrinsicLowering.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/IntrinsicLowering.h b/include/llvm/CodeGen/IntrinsicLowering.h index ad4a9e5..b15d505 100644 --- a/include/llvm/CodeGen/IntrinsicLowering.h +++ b/include/llvm/CodeGen/IntrinsicLowering.h @@ -39,7 +39,8 @@ namespace llvm { class CallInst; class Module; - struct IntrinsicLowering { + class IntrinsicLowering { + public: virtual ~IntrinsicLowering() {} /// AddPrototypes - This method, if called, causes all of the prototypes |