ohler55 / ox

Ruby Optimized XML Parser
http://www.ohler.com/ox
MIT License
904 stars 76 forks source link

Suppress "old style definition" warning #360

Closed Watson1978 closed 2 months ago

Watson1978 commented 2 months ago

This patch will suppress following warning message when compile ox with gcc

$ cd ext/ox
$ ruby extconf.rb
$ make
...
intern.c: In function 'ox_hash_init':
intern.c:70:6: warning: old-style function definition [-Wold-style-definition]
   70 | void ox_hash_init() {
      |      ^~~~~~~~~~~~
...