Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
nullptr one more time.
authorArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 8 Dec 2020 11:41:21 +0000 (12:41 +0100)
committerArnaud Giersch <arnaud.giersch@univ-fcomte.fr>
Tue, 8 Dec 2020 11:41:21 +0000 (12:41 +0100)
examples/s4u/trace-masterworkers/s4u-trace-masterworkers.cpp

index 3e189aa..d0013cd 100644 (file)
@@ -99,7 +99,7 @@ int main(int argc, char* argv[])
   TRACE_category_with_color("finalize", "0 1 0"); // finalize is green
   // categories without user-defined colors receive random colors generated by the tracing system
   TRACE_category("request");
-  TRACE_category_with_color("report", NULL);
+  TRACE_category_with_color("report", nullptr);
 
   e.register_function("master", &master);
   e.register_function("worker", &worker);