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