Merge pull request #575 from besser82/topic/besser82/cosmetics

Small cosmetics.
This commit is contained in:
Eric Haszlakiewicz
2020-04-11 14:18:37 -04:00
committed by GitHub
19 changed files with 454 additions and 462 deletions

2
.gitignore vendored
View File

@@ -42,6 +42,7 @@
/tests/*.trs /tests/*.trs
# Generated folders # Generated folders
/build
/Debug /Debug
/Release /Release
/*/Debug /*/Debug
@@ -86,4 +87,3 @@
/libjson-c.a /libjson-c.a
/libjson-c.so /libjson-c.so
/libjson-c.so.* /libjson-c.so.*

View File

@@ -151,4 +151,3 @@ script:
make distcheck; make distcheck;
if type cppcheck &> /dev/null ; then cppcheck --error-exitcode=1 --quiet *.h *.c tests/ ; fi; if type cppcheck &> /dev/null ; then cppcheck --error-exitcode=1 --quiet *.h *.c tests/ ; fi;
fi fi

View File

@@ -2,4 +2,3 @@ Michael Clark <michael@metaparadigm.com>
Jehiah Czebotar <jehiah@gmail.com> Jehiah Czebotar <jehiah@gmail.com>
Eric Haszlakiewicz <hawicz+json-c@gmail.com> Eric Haszlakiewicz <hawicz+json-c@gmail.com>
C. Watford (christopher.watford@gmail.com) C. Watford (christopher.watford@gmail.com)

View File

@@ -1,3 +1,2 @@
See README.md for installation instructions. See README.md for installation instructions.

View File

@@ -237,4 +237,3 @@ following more specific header files:
* json_util.h - Miscelleanous utility functions. * json_util.h - Miscelleanous utility functions.
For a full list of headers see [files.html](http://json-c.github.io/json-c/json-c-0.13.1/doc/html/files.html) For a full list of headers see [files.html](http://json-c.github.io/json-c/json-c-0.13.1/doc/html/files.html)

View File

@@ -147,4 +147,3 @@ Copy and paste this output into the wiki page at:
------------ ------------
Send an email to the mailing list. Send an email to the mailing list.

View File

@@ -29,4 +29,3 @@ Other:
Variables should be defined for the smallest scope needed. Variables should be defined for the smallest scope needed.
Functions should be defined static when possible. Functions should be defined static when possible.
When possible, avoid exposing internals in the public API. When possible, avoid exposing internals in the public API.

View File

@@ -264,4 +264,3 @@ Issues and Pull Requests closed for the 0.13 release
[Memory leak for json_tokener_parse_ex for version 0.12.1](https://api.github.com/repos/json-c/json-c/issues/382) [Memory leak for json_tokener_parse_ex for version 0.12.1](https://api.github.com/repos/json-c/json-c/issues/382)
[Fix a compiler warning.](https://api.github.com/repos/json-c/json-c/issues/383) [Fix a compiler warning.](https://api.github.com/repos/json-c/json-c/issues/383)
[Fix a VS 2015 compiler warnings.](https://api.github.com/repos/json-c/json-c/issues/384) [Fix a VS 2015 compiler warnings.](https://api.github.com/repos/json-c/json-c/issues/384)

View File

@@ -51,4 +51,3 @@ target_link_libraries(
) )
endforeach(TESTNAME) endforeach(TESTNAME)