From 4f131147af75686e6ed9f87df0dcd5992de0d7a8 Mon Sep 17 00:00:00 2001 From: Christophe Bedard Date: Thu, 10 Sep 2020 19:34:33 -0400 Subject: [PATCH] Partially revert "Release micro-ROS Foxy: disable tracetools status app" This partially reverts commit b473cec508adffe492f45e99ab1b6620312dcae2. Signed-off-by: Christophe Bedard --- tracetools/include/tracetools/utils.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tracetools/include/tracetools/utils.hpp b/tracetools/include/tracetools/utils.hpp index db947e6..e3c934d 100644 --- a/tracetools/include/tracetools/utils.hpp +++ b/tracetools/include/tracetools/utils.hpp @@ -18,14 +18,11 @@ #include #include -#include "tracetools/config.h" #include "tracetools/visibility_control.hpp" /// Default symbol, used when address resolution fails. #define SYMBOL_UNKNOWN "UNKNOWN" -#ifndef TRACETOOLS_DISABLED - TRACETOOLS_PUBLIC const char * _demangle_symbol(const char * mangled); TRACETOOLS_PUBLIC const char * _get_symbol_funcptr(void * funcptr); @@ -65,6 +62,4 @@ const char * get_symbol(L && l) return _demangle_symbol(typeid(l).name()); } -#endif // TRACETOOLS_DISABLED - #endif // TRACETOOLS__UTILS_HPP_