Ecosyste.ms: OpenCollective
An open API service for software projects hosted on Open Collective.
github.com/coronalabs/external-metalangle-jsoncpp-source
https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp
https://github.com/coronalabs/external-metalangle-jsoncpp-source
0adb053294045adcba5643d82983ed90e9816d1e authored almost 6 years ago
Update the link to the conan page, as https://conan.io/source/jsoncpp/1.8.0/theirix/ci returns a...
863aa36165acfdbaf22447f4934f5adc327692a0 authored almost 6 years ago9a55d22d3dbb75753696611c8688b9ac9928d244 authored almost 6 years ago
433107f1d9d639243a075e31ac2f45db0c7d47ee authored almost 6 years ago
00558b38db535b6ee99185caa97efd50d0aa9d29 authored almost 6 years ago
COMP: Remove build files for unsupported IDE's
a7322070601194b35be5bd1f9558aa2771c41d39 authored almost 6 years ago
clang-cl defines _MSC_VER by default, so JSONCPP_DEPRECATED was first
defined for MSVC and then ...
More robust build environments can be generated from meson
or cmake rather than including those ...
The msvc2010 and vs71 IDE's do not support sufficient
C++11 feature sets for jsoncpp.
Remove th...
b4ca2db5ff1494cb0c15c06bb1699048298c98b6 authored almost 6 years ago
* pack the {type,allocated} bitfield (Issue#873)
This allows special functions to be implemente...
I don't know why we didn't include this before.
It seems to work fine.
2b593a9da837337c8520507de38f8122b879eb68 authored about 6 years ago
756a08fbbdd018bc2c14be65d229262ad576a9e2 authored about 6 years ago
deb6cca21421c8b29741101e38989fb62f176115 authored about 6 years ago
Older versions of cmake, according to documentation:
https://cmake.org/cmake/help/v3.5/command/i...
convert JSONCPP_STRING etc from macros to typedefs
b9ed29a2216a801b43aac23d617afe88db3007fb authored about 6 years ago1c2ed7a10f6dc98d8ca0947356c78b785bd6e00a authored about 6 years ago
Reapply clang-format.
6e7cbf8f54afdd60e1d32f3392e1033a925789c2 authored about 6 years ago
$ clang-format -i -style=file \
$(find . | egrep '.*\.(h|cpp|inl)$')
The emptiness of a container should be checked using the empty() method
instead of the size() me...
This check is responsible for using the auto type specifier for variable
declarations to improve...
This check replaces default bodies of special member functions with
= default;. The explicitly d...
Converts a default constructor’s member initializers into the new
default member initializers in...
This check replaces undefined special member functions with
= delete;. The explicitly deleted fu...
C++11 Range based for loops can be used in
Used as a more readable equivalent to the traditiona...
cbeed7b0769a1a519a2e827480b96cf0d17e791d authored about 6 years ago
With move semantics added to the language and the standard library updated with
move constructor...
Make the index values consistent with size_t.
21a418563406acb42484eff33da0a354a671effc authored about 6 years ago4e8b4e313f26f1dd4838f28d5c3e88a2ed7ac140 authored about 6 years ago
d3d2e17b648c513203fafe8ade7b247ce7152272 authored about 6 years ago
908383abebfd9d135904ab99c879d0430330b4b5 authored about 6 years ago
fdc0824505ac890241062eca5e06c7cf0c11284c authored about 6 years ago
Visual Studio 12 (2013) with _MSC_VER=1800 is the oldest supported
compiler with sufficient C++1...
The override support in C++11 is required so avoid aliasing
this feature. Compilers that do not...
8b31c6f0fdf9de5b5295f395c5cec55aedbfa0a8 authored about 6 years ago
1) Improve travis build script for use outside travis.
Allow the script used for CI builds to...
Remove unnecessary python3 environment from osx that
made configuring the test environment slowe...
f8ad1ab352d2cd5bfd9abf319250403b339a8bf2 authored about 6 years ago
Move the build support scripts for travis to a hidden
subdirectory to keep the top level directo...
Clang's ubsan (-fsanitize=undefined) reports:
runtime error: negation of -92233720368547758...
056850c44bde57772b52ee3092a45770ebf873ba authored about 6 years ago
functions involved:
- bool Value::removeMember(const char* key, const char* cend, Value* remov...
```c++
#include <iostream>
class TestBool
{
public:
TestBool():addChildValues_(){}...
d8723104f36339d348b995b70b3d7cb52b7d8020 authored about 6 years ago
08ddeed927ed58d69c6c0d971b69cab6cefba1e1 authored about 6 years ago
Ancient CMake versions required upper-case commands. Later command names
became case-insensitiv...
Test compiler feature sets early so that required features
are validated before long compilation...
Allow configuring without cmake policy developer warnings
for a range of cmake versions.
This p...
b3b92df879828d013cadb76e9791c0c6f1d85f26 authored about 6 years ago
The project directive in cmake 3.1 has a builtin
mechanism for providing consistent versioning
i...
Finds and replaces integer literals which are cast to bool.
SRCDIR=/Users/johnsonhj/src/jsoncpp...
2cb1ad5d0c1b2305b58503ec9363b753f48fd334 authored about 6 years agoAdd information about how one can get a Meson wrap file.
Signed-off-by: Kostiantyn Ponomarenko ...
4bfa962967f11a223b19865cc3b1bf07a085d156 authored about 6 years ago
Using the C++11 headers keeps the library cleaner and more
rigorously scoped use of namespaces.
Simplify the backwards compatible snprintf configuration for pre
1900 version of MSVC. Otherwis...
by changing operator[] param type from JSONCPP_STRING to const JSONCPP_STRING& for CharReaderBui...
ccd077ffced467068b3cf8e11fcb3c8e98dafa22 authored about 6 years ago
Replaces explicit calls to the constructor in a return with a braced
initializer list. This way ...
COMP: Use nullptr instead of 0 or NULL
9026a16ff58cbf7566e31e7a93b082369dc207c0 authored about 6 years ago
The check converts the usage of null pointer constants (eg. NULL, 0) to
use the new C++11 nullpt...
Update json_writer.cpp
6219eae304e550587f0ce0bea1c90042b278187d authored about 6 years agob955e0f69992a1fc855d09a207d2bdfe986dc2a0 authored about 6 years ago
d501fbe741079e560838b4fdbe8323976da10a9b authored about 6 years ago
a72266d00b8b0b056d00fb0830fd84d01dfc769e authored about 6 years ago
Needed when cross-compiling
ec4251b72832cfce719926cfdee6159ce05f5b90 authored about 6 years ago010a2d04d3ae13f4e60dc3f315ee25468510a71f authored about 6 years ago
allow nullptr when not care the removed array value
2baad4923e6d9a7e09982cfa4b1c5fd0b67ebd87 authored over 6 years agoe32ee4717c3503875594dc6415dbbbba89245bce authored over 6 years ago
in travis, build for osx also
80bc776bae74261742b7c2d0b8dc31ec1718ba4a authored over 6 years agoDrop gcc b/c it takes too long to install via addon.
Build only static/release, to save VMs. (N...
da498591fc87191e619d98d7935a99fadd88a4f4 authored over 6 years ago745287275c83538e495bcdbd9dfee4befa097b5e authored over 6 years ago
Fixes #798
Closes #799
c59db800023ac306ad44cd7c8aa5bef474faf173 authored over 6 years ago
- g++ has a problem with ''
- clang++ does not seem to mind it.
473afca1e3c9531e9d00a6c8f84ff27bfbd72b9d authored over 6 years ago
Add preprocessor definitions for MSVC dllexport/dllimport statements
(cherry picked from commit...
b87f6dbc8a732ea785798cc76d66314eea38f008 authored over 6 years agoEnable Position Independent Code for shared lib
ee34ac1fbbdb97220ec0dd6110353c1a387453ee authored over 6 years agoFix #782
d31a5300e17292022d354a2238af52416540d2cf authored over 6 years ago86789e7c2f576fe7a679f62667e87de1fea61865 authored over 6 years ago
Multiple fixes for issues found by Cppcheck
c4103ab390d79036786296b30625c896810edbc3 authored over 6 years agoa5d7c714b1ecdd7ad2a15378f70512384acdafcb authored over 6 years ago
84ca7d6f0bf3148124c0dcb309cb477cd027324e authored over 6 years ago
fc20134c92770fe60db522e0c10c2d6c264f7b50 authored over 6 years ago
091e03979d9331702e09cef61472159b8b1556b1 authored over 6 years ago
a7d0ffc7175c6ee7f1fa937cca5601722b96701e authored over 6 years ago
48112c8b626d3930ca748328189955219b81aad0 authored over 6 years ago
c8bb600d2729d2588e9af9d6d4a95ff0f59f63dc authored over 6 years ago
%d in format string requires 'int' but the argument type is 'unsigned int'.
85a263e89f132f26812f8f468b146fb8b8690063 authored over 6 years agoReapply clang format
cfab607c0d6d4f4cab7bdde69769964c558913cb authored over 6 years agoabd39e791b08d0e2f46ff7986f3559bffa0b5fc4 authored over 6 years ago
$ clang-format --version
clang-format version 7.0.0 (tags/google/stable/2018-01-11)
$ clan...
Improvements in writing precision and json_tool.h helpers.
resolves #772
768e31fc68a898d4eefa3cb45ea09df105895df7 authored over 6 years agoaa1b3836667d3af20ef3f66a3cb5e1e321f41854 authored over 6 years ago
8bf20bdc35e04537ffd60411f208819a55c5ce53 authored over 6 years ago
0ba5c435f4ff98eef979d67dabd08ed2bddbf50b authored over 6 years ago
fdcc2e4428bdee765021ac88eb11e1b258c14909 authored over 6 years ago
9ebfc8d37b1d8fab5980baafbcc051c7cbdc43fc authored over 6 years ago
4cec95a2e7cd64a9f45eabc132a883671ec699fd authored over 6 years ago
cf73619e280339b069a79cba0bfa334f79e16811 authored over 6 years ago
Disable warning "C4702" when compiling json cpp using vs2013 and above
resolves #759
ded953e0a62d0a1e43618341cca3fbaa20073ff5 authored over 6 years ago0a62267fe42b87e9000acf7012d24bad80962742 authored over 6 years ago
Fix msvc /fp:fast test failure
2cc9b24f0dc9e28fcb8f043970cd223673dc961c authored over 6 years ago6e5e9be7368e5da375dab5cd0b200fd22ab4795c authored over 6 years ago
4050143288562d0775e0f028910ce5451c326846 authored over 6 years ago
3f0d91f08a048a799e3eead16c10bd21977da53a authored over 6 years ago