snippet/warn-on-use: no 'static inline'
authorPaul Eggert <eggert@cs.ucla.edu>
Wed, 21 Nov 2012 06:25:10 +0000 (22:25 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 30 Nov 2012 07:38:57 +0000 (23:38 -0800)
* build-aux/snippet/warn-on-use.h:
Remove unnecessary 'inline' in comment.

ChangeLog
build-aux/snippet/warn-on-use.h

index 59936b4..9ac628a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2012-11-29  Paul Eggert  <eggert@cs.ucla.edu>
 
+       snippet/warn-on-use: no 'static inline'
+       * build-aux/snippet/warn-on-use.h:
+       Remove unnecessary 'inline' in comment.
+
        rbtree-list, rbtreehash-list: no 'static inline'
        * lib/gl_anyrbtree_list2.h (rotate_left, rotate_right):
        * lib/gl_anytree_list2.h (node_at):
index c7bea5d..abfcace 100644 (file)
@@ -55,7 +55,7 @@
    rather than issue the nice warning, but the end result of informing
    the developer about their portability problem is still achieved):
    #if HAVE_RAW_DECL_ENVIRON
-   static inline char ***rpl_environ (void) { return &environ; }
+   static char ***rpl_environ (void) { return &environ; }
    _GL_WARN_ON_USE (rpl_environ, "environ is not always properly declared");
    # undef environ
    # define environ (*rpl_environ ())