Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SIMIX] NULL -> nullptr substitution
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Wed, 8 Jun 2016 21:20:59 +0000 (23:20 +0200)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Thu, 9 Jun 2016 07:39:07 +0000 (09:39 +0200)
commit1928b36ff7a719c88d3db6b4e685bed8f544c7da
treebe2e0689890a1739eac8682d4816c1b7acee149e
parenta2ba3fbf10cecf8ac1da9bd7fb8d3deaf53a900e
[SIMIX] 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
15 files changed:
src/simix/ContextRaw.cpp
src/simix/ContextThread.cpp
src/simix/ContextUnix.cpp
src/simix/SynchroComm.cpp
src/simix/SynchroExec.cpp
src/simix/SynchroSleep.cpp
src/simix/libsmx.cpp
src/simix/smx_deployment.cpp
src/simix/smx_global.cpp
src/simix/smx_host.cpp
src/simix/smx_io.cpp
src/simix/smx_network.cpp
src/simix/smx_process.cpp
src/simix/smx_synchro.cpp
src/simix/smx_vm.cpp