[llvm-commits] [llvm] r49639 - /llvm/branches/ggreif/use-diet/include/llvm/Constants.h
Gabor Greif
ggreif at gmail.com
Mon Apr 14 03:25:47 PDT 2008
Author: ggreif
Date: Mon Apr 14 05:25:47 2008
New Revision: 49639
URL: http://llvm.org/viewvc/llvm-project?rev=49639&view=rev
Log:
custom dtors no more needed
Modified:
llvm/branches/ggreif/use-diet/include/llvm/Constants.h
Modified: llvm/branches/ggreif/use-diet/include/llvm/Constants.h
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/ggreif/use-diet/include/llvm/Constants.h?rev=49639&r1=49638&r2=49639&view=diff
==============================================================================
--- llvm/branches/ggreif/use-diet/include/llvm/Constants.h (original)
+++ llvm/branches/ggreif/use-diet/include/llvm/Constants.h Mon Apr 14 05:25:47 2008
@@ -314,7 +314,6 @@
ConstantArray(const ConstantArray &); // DO NOT IMPLEMENT
protected:
ConstantArray(const ArrayType *T, const std::vector<Constant*> &Val);
- ~ConstantArray();
public:
/// get() - Static factory methods - Return objects of the specified value
static Constant *get(const ArrayType *T, const std::vector<Constant*> &);
@@ -388,7 +387,6 @@
ConstantStruct(const ConstantStruct &); // DO NOT IMPLEMENT
protected:
ConstantStruct(const StructType *T, const std::vector<Constant*> &Val);
- ~ConstantStruct();
public:
/// get() - Static factory methods - Return objects of the specified value
///
@@ -441,7 +439,6 @@
ConstantVector(const ConstantVector &); // DO NOT IMPLEMENT
protected:
ConstantVector(const VectorType *T, const std::vector<Constant*> &Val);
- ~ConstantVector();
public:
/// get() - Static factory methods - Return objects of the specified value
static Constant *get(const VectorType *T, const std::vector<Constant*> &);
More information about the llvm-commits
mailing list