search for: psvs

Displaying 1 result from an estimated 1 matches for "psvs".

Did you mean: msvs
2009 May 13
0
[LLVMdev] LLVM is deleting an array pointer without using array notation
...:PseudoSourceValue [4] ] The deleter is in the file ManagedStatic.h on line 21: template<class C> void object_deleter(void *Ptr) { delete (C*)Ptr; } And it is being passed an array to delete in file PseudoSourceValue.cpp on line 23: static ManagedStatic<PseudoSourceValue[4]> PSVs; A template specialization for array types will work, the tr1::type_traits or boost::type_traits (same thing and you can include the parts you wish to use with LLVM, the license encourages that) can detect an array type like that and specialize based on it. If you do not mind including a few boos...