Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI/INSTR] Replace ! with 'not' ...
authorChristian Heinrich <franz-christian.heinrich@inria.fr>
Thu, 2 Aug 2018 15:30:53 +0000 (17:30 +0200)
committerChristian Heinrich <franz-christian.heinrich@inria.fr>
Thu, 2 Aug 2018 15:34:50 +0000 (17:34 +0200)
src/smpi/internals/instr_smpi.cpp

index 9bacf19..3f7fcd3 100644 (file)
@@ -296,7 +296,7 @@ void TRACE_smpi_send_process_data_out(int rank)
 
 void TRACE_smpi_process_change_host(int rank, sg_host_t new_host)
 {
 
 void TRACE_smpi_process_change_host(int rank, sg_host_t new_host)
 {
-  if (!TRACE_smpi_is_enabled()) return;
+  if (not TRACE_smpi_is_enabled()) return;
 
   /** The key is (most likely) used to match the events in the trace */
   static long long int counter = 0;
 
   /** The key is (most likely) used to match the events in the trace */
   static long long int counter = 0;