From: andersca@apple.com Date: Tue, 27 Nov 2007 21:27:59 +0000 (+0000) Subject: Reviewed by Darin. X-Git-Url: https://git.webkit.org/?p=WebKit-https.git;a=commitdiff_plain;h=2ede20998d725e30da982ce7bd2b890d87f8ddff Reviewed by Darin. Add a ValueType typedef. * wtf/Vector.h: git-svn-id: https://svn.webkit.org/repository/webkit/trunk@28076 268f45cc-cd09-0410-ab3c-d52691b4dbfc --- diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog index fa89d6c4bb2f..77568cb18172 100644 --- a/JavaScriptCore/ChangeLog +++ b/JavaScriptCore/ChangeLog @@ -1,3 +1,11 @@ +2007-11-27 Anders Carlsson + + Reviewed by Darin. + + Add a ValueType typedef. + + * wtf/Vector.h: + 2007-11-26 Darin Adler Reviewed by Mitz. diff --git a/JavaScriptCore/wtf/Vector.h b/JavaScriptCore/wtf/Vector.h index f9b920b9f3f6..308a51b24235 100644 --- a/JavaScriptCore/wtf/Vector.h +++ b/JavaScriptCore/wtf/Vector.h @@ -390,6 +390,8 @@ namespace WTF { typedef VectorTypeOperations TypeOperations; public: + typedef T ValueType; + typedef T* iterator; typedef const T* const_iterator;