1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

In commit 91421, isPod was changed from false to true for these value handles.

Change it back again: destructors and constructors need to be run.

llvm-svn: 109498
This commit is contained in:
Duncan Sands 2010-07-27 09:09:05 +00:00
parent cac9d6f302
commit a5314238d6

View File

@ -250,12 +250,6 @@ public:
}
};
template<typename KeyT, typename ValueT, typename Config, typename ValueInfoT>
struct isPodLike<ValueMapCallbackVH<KeyT, ValueT, Config, ValueInfoT> > {
static const bool value = true;
};
template<typename KeyT, typename ValueT, typename Config, typename ValueInfoT>
struct DenseMapInfo<ValueMapCallbackVH<KeyT, ValueT, Config, ValueInfoT> > {
typedef ValueMapCallbackVH<KeyT, ValueT, Config, ValueInfoT> VH;