Juniper / libxo

The libxo library allows an application to generate text, XML, JSON, and HTML output using a common set of function calls. The application decides at run time which output style should be produced.
http://juniper.github.io/libxo/libxo-manual.html
BSD 2-Clause "Simplified" License
321 stars 48 forks source link

Fix comparison between signed and unsigned #50

Closed xcllnt closed 9 years ago

xcllnt commented 9 years ago

wchar_t is sometimes defined as "signed int" and sometimes as "unsigned int". Avoid compiler warnings (that can break the build with -Werror) by replacing int with wchar_t where appropriate.

philshafer commented 9 years ago

Merged into 'develop'.