ceftests: Convert NULL to nullptr (see issue #2861)

This commit is contained in:
Marshall Greenblatt
2020-01-15 14:34:01 +01:00
parent 97d559982e
commit f5eef5390a
41 changed files with 318 additions and 309 deletions

View File

@@ -87,8 +87,8 @@ class TracingTestHandler : public CefEndTracingCallback,
// Verify the results.
EXPECT_TRUE(!trace_data_.empty());
EXPECT_TRUE(trace_type_ != NULL);
EXPECT_TRUE(strstr(trace_data_.c_str(), trace_type_) != NULL);
EXPECT_TRUE(trace_type_ != nullptr);
EXPECT_TRUE(strstr(trace_data_.c_str(), trace_type_) != nullptr);
}
void BeginTracing() {