From: Christian Heinrich Date: Wed, 8 Jun 2016 21:20:59 +0000 (+0200) Subject: [SIMDAG] NULL -> nullptr substitution X-Git-Tag: v3_14~1021 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/e6f7f709a42562f77d630d5c02883f031a108d1b?hp=e6f7f709a42562f77d630d5c02883f031a108d1b [SIMDAG] NULL -> nullptr substitution I used the following command: (the '**' means recursion in ZSH) sed -i -e 's/\([^_]\s*\)NULL/\1nullptr/g' src/**/*.cpp We check for the underscore to avoid replacing MPI_*_NULL ---