Don't use nullptr
This commit is contained in:
parent
57eae5595e
commit
ae785ffb52
@ -1522,7 +1522,7 @@ struct NumbersAsStringsHandler {
|
|||||||
bool Double(double) { return true; }
|
bool Double(double) { return true; }
|
||||||
// 'str' is not null-terminated
|
// 'str' is not null-terminated
|
||||||
bool RawNumber(const char* str, SizeType length, bool) {
|
bool RawNumber(const char* str, SizeType length, bool) {
|
||||||
EXPECT_TRUE(str != nullptr);
|
EXPECT_TRUE(str != 0);
|
||||||
EXPECT_TRUE(strncmp(str, "3.1416", length) == 0);
|
EXPECT_TRUE(strncmp(str, "3.1416", length) == 0);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user