From: Christian Heinrich Date: Tue, 7 Jun 2016 05:24:14 +0000 (+0200) Subject: [SMPI] Change some NULL to nullptr X-Git-Tag: v3_14~1040 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/418017e9c1ea8822a5d5e981ebda05d0bfbae0d4?ds=sidebyside [SMPI] Change some NULL to nullptr --- diff --git a/src/smpi/smpi_base.cpp b/src/smpi/smpi_base.cpp index 11325c458a..c0ac9935de 100644 --- a/src/smpi/smpi_base.cpp +++ b/src/smpi/smpi_base.cpp @@ -76,9 +76,9 @@ typedef struct s_smpi_factor_multival { // FIXME: this should be merged (dedupli double values[4];//arbitrary set to 4 } s_smpi_factor_multival_t; -xbt_dynar_t smpi_os_values = NULL; -xbt_dynar_t smpi_or_values = NULL; -xbt_dynar_t smpi_ois_values = NULL; +xbt_dynar_t smpi_os_values = nullptr; +xbt_dynar_t smpi_or_values = nullptr; +xbt_dynar_t smpi_ois_values = nullptr; static simgrid::config::Flag smpi_wtime_sleep( "smpi/wtime", "Minimum time to inject inside a call to MPI_Wtime", 0.0);