From e7cfa2f5a4cacfa2ac973d841a223eb8d49f540c Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Wed, 7 Apr 2021 15:16:39 +0200 Subject: [PATCH] Prefer nullptr. --- src/smpi/internals/smpi_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/smpi/internals/smpi_utils.cpp b/src/smpi/internals/smpi_utils.cpp index 90ef1550bb..78a50c4fe7 100644 --- a/src/smpi/internals/smpi_utils.cpp +++ b/src/smpi/internals/smpi_utils.cpp @@ -36,7 +36,7 @@ struct MaxMalloc { std::string file; }; MaxMalloc max_malloc; -F2C* current_handle=0; +F2C* current_handle = nullptr; std::vector parse_factor(const std::string& smpi_coef_string) { -- 2.20.1