X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/01d7bd146ba0719d926c38dd41b28db6670d08f9..e18a7b043d161b29d0bf3f5743cb7a570241576a:/src/instr/instr_config.cpp?ds=sidebyside diff --git a/src/instr/instr_config.cpp b/src/instr/instr_config.cpp index daa18c4329..8bbe263a69 100644 --- a/src/instr/instr_config.cpp +++ b/src/instr/instr_config.cpp @@ -63,7 +63,7 @@ static int trace_precision; static bool trace_configured = false; static bool trace_active = false; -static type_t rootType = nullptr; /* the root type */ +static Type* rootType = nullptr; /* the root type */ instr_fmt_type_t instr_fmt_type = instr_fmt_paje; @@ -482,7 +482,7 @@ static void output_categories(const char* name, FILE* file) { unsigned int i = created_categories.size(); fprintf (file, " values = ("); - for (auto cat : created_categories) { + for (auto const& cat : created_categories) { --i; fprintf(file, "\"%s%s\"", name, cat.c_str()); if (i > 0) {