Apply modernize-use-nullptr.

This commit is contained in:
Alexander Arlt
2020-04-01 12:46:19 -05:00
parent 82f57f0465
commit 616fd8df1e
2 changed files with 2 additions and 2 deletions
+1 -1
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);
}