Merge pull request #8569 from aarlt/clang-tidy-apply-modernize-use-nullptr

clang-tidy: Apply modernize-use-nullptr.
This commit is contained in:
chriseth 2020-04-02 10:38:54 +02:00 committed by GitHub
commit 3224785381
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ test_suite* init_unit_test_suite( int /*argc*/, char* /*argv*/[] )
if (solidity::test::CommonOptions::get().disableSMT)
removeTestSuite("SMTChecker");
return 0;
return nullptr;
}
// BOOST_TEST_DYN_LINK should be defined if user want to link against shared boost test library

View File

@ -52,5 +52,5 @@ uint32_t SimulationRNG::generateSeed()
// This is not a secure way to seed the generator but it's good enough for simulation purposes.
// The only thing that matters for us is that the sequence is different on each run and that
// it fits the expected distribution. It does not have to be 100% unpredictable.
return time(0);
return time(nullptr);
}