From 4f25d2981501d69ea04c02910cc309abfee068ea Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Fri, 3 Oct 2014 09:56:07 +0200 Subject: [PATCH] use nullptr instead of NULL --- Util/BoostFileSystemFix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util/BoostFileSystemFix.h b/Util/BoostFileSystemFix.h index 1e1e98e0e..99b325fc6 100644 --- a/Util/BoostFileSystemFix.h +++ b/Util/BoostFileSystemFix.h @@ -121,7 +121,7 @@ portable_canonical(const boost::filesystem::path &relative_path, inline path temp_directory_path() { char *buffer; - buffer = tmpnam(NULL); + buffer = tmpnam(nullptr); return path(buffer); }