X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FADT%2FValueMap.h;h=6f57fe8399bc3aa78e3157a65bf1aedafe0e8a29;hb=e8ab3bd3a5c53827dff622723f0834a8f641b1e9;hp=b043c389fd3f96995daa1386d50e0d1a19b60280;hpb=fe134fe9e5673d63b4b80392adcc5a3df928475f;p=oota-llvm.git diff --git a/include/llvm/ADT/ValueMap.h b/include/llvm/ADT/ValueMap.h index b043c389fd3..6f57fe8399b 100644 --- a/include/llvm/ADT/ValueMap.h +++ b/include/llvm/ADT/ValueMap.h @@ -250,6 +250,12 @@ public: } }; + +template +struct isPodLike > { + static const bool value = true; +}; + template struct DenseMapInfo > { typedef ValueMapCallbackVH VH; @@ -267,7 +273,6 @@ struct DenseMapInfo > { static bool isEqual(const VH &LHS, const VH &RHS) { return LHS == RHS; } - static bool isPod() { return false; } };