X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/234b2f4e892e942c28fa9c8bc4f57af1214b1424..4bb73cb3914b5f7b77a9ec1f8abe728e637cc016:/include/xbt/backtrace.hpp diff --git a/include/xbt/backtrace.hpp b/include/xbt/backtrace.hpp index ca3f282e52..754bd5fb22 100644 --- a/include/xbt/backtrace.hpp +++ b/include/xbt/backtrace.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2005-2019. The SimGrid Team. +/* Copyright (c) 2005-2018. The SimGrid Team. * All rights reserved. */ #ifndef SIMGRIX_XBT_BACKTRACE_HPP @@ -20,18 +20,16 @@ namespace xbt { * * Return the origin string if this fails. */ -XBT_PUBLIC() std::unique_ptr demangle(const char* name); +XBT_PUBLIC std::unique_ptr demangle(const char* name); /** Get the current backtrace */ -XBT_PUBLIC(std::vector) backtrace(); +XBT_PUBLIC std::vector backtrace(); /* Translate the backtrace in a human friendly form * * Try ro resolve symbols and source code location. */ -XBT_PUBLIC(std::vector) resolveBacktrace( - xbt_backtrace_location_t const* loc, std::size_t count); - +XBT_PUBLIC std::vector resolveBacktrace(xbt_backtrace_location_t const* loc, std::size_t count); } }