diff options
Diffstat (limited to 'include/clang/Index/Entity.h')
-rw-r--r-- | include/clang/Index/Entity.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/clang/Index/Entity.h b/include/clang/Index/Entity.h index 4533a1a0ac08..c2aab62e23f2 100644 --- a/include/clang/Index/Entity.h +++ b/include/clang/Index/Entity.h @@ -134,9 +134,10 @@ struct DenseMapInfo<clang::idx::Entity> { isEqual(clang::idx::Entity LHS, clang::idx::Entity RHS) { return LHS == RHS; } - - static inline bool isPod() { return true; } }; + +template <> +struct isPodLike<clang::idx::Entity> { static const bool value = true; }; } // end namespace llvm |