From: Jeremy Fitzhardinge Date: Fri, 2 Jul 2004 00:22:36 +0000 (+0000) Subject: Clarify that you can also iterate from the result of a SkipList_Find. X-Git-Tag: svn/VALGRIND_2_1_2~52 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=65a496272175d4e27f3cce695f72ba7b3b0441ea;p=thirdparty%2Fvalgrind.git Clarify that you can also iterate from the result of a SkipList_Find. (Comment change only) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2455 --- diff --git a/include/vg_skin.h.base b/include/vg_skin.h.base index c359bb8899..b3bd480827 100644 --- a/include/vg_skin.h.base +++ b/include/vg_skin.h.base @@ -1797,7 +1797,7 @@ extern void *VG_(SkipList_Remove)( SkipList *l, void *key); You can iterate through a SkipList like this: - for(x = VG_(SkipNode_First)(&list); + for(x = VG_(SkipNode_First)(&list); // or SkipList_Find x != NULL; x = VG_(SkipNode_Next)(&list, x)) { ... } */