Index: src/list.h |
diff --git a/src/list.h b/src/list.h |
index 0b605e903ee9f78e8bd1681fe49bedecca7b3caa..57504e075d94215794ecdf56eaf969ed565c50f7 100644 |
--- a/src/list.h |
+++ b/src/list.h |
@@ -179,14 +179,6 @@ int SortedListBSearch( |
template <typename T> |
int SortedListBSearch(const List<T>& list, T elem); |
-// Unwraps each handle in the source list to a pointer at |
-// the corresponding position in the destination list. |
-// Returns the destination list. |
-// Both list must have the same length. |
- |
-template <class T> |
-List<T*>* UnwrapHandleList(List<T*>* destination, List<Handle<T> >* source); |
- |
} } // namespace v8::internal |