From: Gabriel Corona Date: Thu, 17 Sep 2015 14:02:55 +0000 (+0200) Subject: [mc] Fix missing #include X-Git-Tag: v3_12~183^2 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/be7aebfeb78fec388f583585aa207a6fe85df69a [mc] Fix missing #include --- diff --git a/src/mc/mc_dwarf.cpp b/src/mc/mc_dwarf.cpp index 7b9873c1be..d3a6f4f100 100644 --- a/src/mc/mc_dwarf.cpp +++ b/src/mc/mc_dwarf.cpp @@ -4,7 +4,8 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include +#include +#include #include #include @@ -86,7 +87,7 @@ static void mc_post_process_scope( auto i = info->subprograms.find(scope->abstract_origin_id); xbt_assert(i != info->subprograms.end(), "Could not lookup abstract origin %" PRIx64, - (uint64_t) scope->abstract_origin_id); + (std::uint64_t) scope->abstract_origin_id); scope->name = i->second.name; }