X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fgl_anyrbtree_list2.h;h=57279b68c20e9180ea41073f32fe275754d42519;hb=a77413333408e54b8d6c4e19918098794cef4b4b;hp=9056d74c43b52d134d20640c31df5d930f4ec9de;hpb=d599e5add275f75ed08e6527b8ee4d3f4f7c3aea;p=gnulib.git diff --git a/lib/gl_anyrbtree_list2.h b/lib/gl_anyrbtree_list2.h index 9056d74c4..57279b68c 100644 --- a/lib/gl_anyrbtree_list2.h +++ b/lib/gl_anyrbtree_list2.h @@ -1,5 +1,5 @@ /* Sequential list data type implemented by a binary tree. - Copyright (C) 2006-2007, 2009-2011 Free Software Foundation, Inc. + Copyright (C) 2006-2007, 2009-2013 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software: you can redistribute it and/or modify @@ -163,7 +163,7 @@ gl_tree_nx_create (gl_list_implementation_t implementation, Change the tree structure, update the branch sizes. The caller must update the colors and register D as child of its parent. */ -static inline gl_list_node_t +static gl_list_node_t rotate_left (gl_list_node_t b_node, gl_list_node_t d_node) { gl_list_node_t a_node = b_node->left; @@ -197,7 +197,7 @@ rotate_left (gl_list_node_t b_node, gl_list_node_t d_node) Change the tree structure, update the branch sizes. The caller must update the colors and register B as child of its parent. */ -static inline gl_list_node_t +static gl_list_node_t rotate_right (gl_list_node_t b_node, gl_list_node_t d_node) { gl_list_node_t a_node = b_node->left;