summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaCodeComplete.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-12-15 07:26:51 +0000
committerChris Lattner <sabre@nondot.org>2009-12-15 07:26:51 +0000
commit2f3da9b2059acbba071d7a38589d8cd373383dfa (patch)
treec2dec7e4b5e98d3d69cdbeaaecbe76da1269befa /clang/lib/Sema/SemaCodeComplete.cpp
parent45d040bd85e0775156c65d99b329b7da5e764ef7 (diff)
downloadbcm5719-llvm-2f3da9b2059acbba071d7a38589d8cd373383dfa.tar.gz
bcm5719-llvm-2f3da9b2059acbba071d7a38589d8cd373383dfa.zip
update to match LLVM API change:
Remove isPod() from DenseMapInfo, splitting it out to its own isPodLike type trait. This is a generally useful type trait for more than just DenseMap, and we really care about whether something acts like a pod, not whether it really is a pod. llvm-svn: 91422
Diffstat (limited to 'clang/lib/Sema/SemaCodeComplete.cpp')
-rw-r--r--clang/lib/Sema/SemaCodeComplete.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/clang/lib/Sema/SemaCodeComplete.cpp b/clang/lib/Sema/SemaCodeComplete.cpp
index 42ac6f19b0e..4ce9330fc14 100644
--- a/clang/lib/Sema/SemaCodeComplete.cpp
+++ b/clang/lib/Sema/SemaCodeComplete.cpp
@@ -240,13 +240,6 @@ public:
}
};
-namespace llvm {
- template<>
- struct DenseMapInfo<ResultBuilder::ShadowMapEntry> {
- static bool isPod() { return false; }
- };
-}
-
ResultBuilder::ShadowMapEntry::iterator
ResultBuilder::ShadowMapEntry::begin() const {
if (DeclOrVector.isNull())
OpenPOWER on IntegriCloud