From: Bruno Haible Date: Tue, 7 Nov 2006 13:53:52 +0000 (+0000) Subject: ANSI C comment style. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11f037c25793b02c701776d88087ae7d419cbe93;p=pspp ANSI C comment style. --- diff --git a/ChangeLog b/ChangeLog index a85083f983..290de4ccf6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2006-11-06 Ralf Wildenhues + + * lib/gl_oset.h: Use C comment style, not C++ comment style. + 2006-11-06 Bruno Haible * m4/inline.m4: New file. diff --git a/lib/gl_oset.h b/lib/gl_oset.h index 2a67994a86..fb36aac1cf 100644 --- a/lib/gl_oset.h +++ b/lib/gl_oset.h @@ -153,7 +153,7 @@ extern void gl_oset_iterator_free (gl_oset_iterator_t *iterator); struct gl_oset_implementation { - // gl_oset_t functions. + /* gl_oset_t functions. */ gl_oset_t (*create_empty) (gl_oset_implementation_t implementation, gl_setelement_compar_fn compar_fn); size_t (*size) (gl_oset_t set); @@ -164,7 +164,7 @@ struct gl_oset_implementation bool (*add) (gl_oset_t set, const void *elt); bool (*remove) (gl_oset_t set, const void *elt); void (*oset_free) (gl_oset_t set); - // gl_oset_iterator_t functions. + /* gl_oset_iterator_t functions. */ gl_oset_iterator_t (*iterator) (gl_oset_t set); bool (*iterator_next) (gl_oset_iterator_t *iterator, const void **eltp); void (*iterator_free) (gl_oset_iterator_t *iterator);