From be7aebfeb78fec388f583585aa207a6fe85df69a Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Thu, 17 Sep 2015 16:02:55 +0200 Subject: [PATCH 1/1] [mc] Fix missing #include --- src/mc/mc_dwarf.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.20.1