From 7b73af07a93080343fba6505a383a7ecafd738cb Mon Sep 17 00:00:00 2001 From: Philipp Schafft Date: Thu, 8 Nov 2018 13:31:20 +0000 Subject: [PATCH] Fix: Corrected possition of comment --- include/igloo/list.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/igloo/list.h b/include/igloo/list.h index 5bf1264..df4b632 100644 --- a/include/igloo/list.h +++ b/include/igloo/list.h @@ -35,16 +35,16 @@ typedef struct igloo_list_iterator_tag igloo_list_iterator_storage_t; igloo_RO_FORWARD_TYPE(igloo_list_t); /* ---[ PRIVATE ]--- */ +/* + * Those types are defined here as they must be known to the compiler. + * Nobody should ever try to access them directly. + */ struct igloo_list_iterator_tag { igloo_list_t *list; size_t idx; }; /* ---[ END PRIVATE ]--- */ -/* - * Those types are defined here as they must be known to the compiler. - * Nobody should ever try to access them directly. - */ int igloo_list_clear(igloo_list_t *list); void igloo_list_preallocate(igloo_list_t *list, size_t request); int igloo_list_set_type__real(igloo_list_t *list, const igloo_ro_type_t *type);