mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-10-15 15:16:47 +02:00
Issue 1100: Drop CPPTL support
CPPTL support is no longer relevant to JsonCpp, and can be removed from the library. This patch removes all mentions of CPPTL, by removing all definitions and code sections conditionally compiled only when JsonCpp is used with CPPTL. Include guards are also renamed to not refer to CPPTL where appropriate.
This commit is contained in:
@@ -3584,9 +3584,6 @@ JSONTEST_FIXTURE_LOCAL(MemberTemplateAs, BehavesSameAsNamedAs) {
|
||||
const Json::Value jstr = "hello world";
|
||||
JSONTEST_ASSERT_STRING_EQUAL(jstr.as<const char*>(), jstr.asCString());
|
||||
JSONTEST_ASSERT_STRING_EQUAL(jstr.as<Json::String>(), jstr.asString());
|
||||
#ifdef JSON_USE_CPPTL
|
||||
JSONTEST_ASSERT_STRING_EQUAL(js.as<CppTL::ConstString>(), js.asConstString());
|
||||
#endif
|
||||
EqEval(Json::Int(64), [](const Json::Value& j) { return j.asInt(); });
|
||||
EqEval(Json::UInt(64), [](const Json::Value& j) { return j.asUInt(); });
|
||||
#if defined(JSON_HAS_INT64)
|
||||
|
Reference in New Issue
Block a user