From c769e9c8d4a061f6b36d834f30f8ed69b68f5a7f Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 24 Jun 2013 15:09:04 +0200
Subject: [PATCH] Substituted NULL with nullptr to be more clear.

---
 Tests/MathLib/TestDenseGaussAlgorithm.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Tests/MathLib/TestDenseGaussAlgorithm.cpp b/Tests/MathLib/TestDenseGaussAlgorithm.cpp
index f1a0f470bef..3617ba082ef 100644
--- a/Tests/MathLib/TestDenseGaussAlgorithm.cpp
+++ b/Tests/MathLib/TestDenseGaussAlgorithm.cpp
@@ -31,7 +31,7 @@ TEST(MathLib, DenseGaussAlgorithm)
 
 	// *** fill matrix with arbitrary values
 	// ** initialize random seed
-	srand ( static_cast<unsigned>(time(NULL)) );
+	srand ( static_cast<unsigned>(time(nullptr)) );
 	// ** loop over rows and columns
 	for (std::size_t i(0); i<n_rows; i++) {
 		for (std::size_t j(0); j<n_cols; j++) {
@@ -107,7 +107,7 @@ TEST(MathLib, DenseGaussAlgorithmDenseVector)
 
 	// *** fill matrix with arbitrary values
 	// ** initialize random seed
-	srand ( static_cast<unsigned>(time(NULL)) );
+	srand ( static_cast<unsigned>(time(nullptr)) );
 	// ** loop over rows and columns
 	for (std::size_t i(0); i<n_rows; i++) {
 		for (std::size_t j(0); j<n_cols; j++) {
-- 
GitLab