Skip to content

Commit fe855fb

Browse files
committed
drop nullptr
See issue open-source-parsers#153.
1 parent 198cc35 commit fe855fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test_lib_json/jsontest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ TestResult& checkStringEqual(TestResult& result,
214214
#define JSONTEST_ASSERT_PRED(expr) \
215215
{ \
216216
JsonTest::PredicateContext _minitest_Context = { \
217-
result_->predicateId_, __FILE__, __LINE__, #expr, nullptr, nullptr \
217+
result_->predicateId_, __FILE__, __LINE__, #expr, NULL, NULL \
218218
}; \
219219
result_->predicateStackTail_->next_ = &_minitest_Context; \
220220
result_->predicateId_ += 1; \

0 commit comments

Comments
 (0)