Index: Source/core/rendering/shapes/ShapeInfo.h |
diff --git a/Source/core/rendering/shapes/ShapeInfo.h b/Source/core/rendering/shapes/ShapeInfo.h |
index a1ee0606f151caf0efd13c7495fdb574bdb4f7b9..00f9a02836f2176fe6ec05132b8d4b24bd47047c 100644 |
--- a/Source/core/rendering/shapes/ShapeInfo.h |
+++ b/Source/core/rendering/shapes/ShapeInfo.h |
@@ -49,7 +49,7 @@ public: |
if (InfoType* info = infoMap.get(key)) |
return info; |
typename InfoMap::AddResult result = infoMap.add(key, InfoType::createInfo(key)); |
- return result.iterator->value.get(); |
+ return result.storedValue->value.get(); |
} |
static void removeInfo(const KeyType* key) { infoMap().remove(key); } |
static InfoType* info(const KeyType* key) { return infoMap().get(key); } |