From 3b3ad8b3ccb9f03b30613ef4ee536459939a67f5 Mon Sep 17 00:00:00 2001 From: Martin Quinson Date: Sat, 27 Oct 2018 19:09:18 +0200 Subject: [PATCH] backtrace: fix various portability issues I just introduced I'm really a bummer --- src/xbt/backtrace.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/xbt/backtrace.cpp b/src/xbt/backtrace.cpp index 53064c6937..7e1ce1d630 100644 --- a/src/xbt/backtrace.cpp +++ b/src/xbt/backtrace.cpp @@ -19,7 +19,7 @@ #ifdef __GXX_ABI_VERSION #include #endif -#ifdef HAVE_EXECINFO_H +#if HAVE_EXECINFO_H #include #endif @@ -353,11 +353,6 @@ size_t xbt_backtrace_current(xbt_backtrace_location_t* loc, size_t count) namespace simgrid { namespace xbt { -std::vector resolve_backtrace(xbt_backtrace_location_t const* loc, std::size_t count) -{ - std::vector result; - return result; -} std::vector resolve_backtrace(xbt_backtrace_location_t const* loc, std::size_t count) { -- 2.20.1