Partially revert "Release micro-ROS Foxy: disable tracetools status app"

This partially reverts commit b473cec508.

Signed-off-by: Christophe Bedard <bedard.christophe@gmail.com>
This commit is contained in:
Christophe Bedard 2020-09-10 19:34:33 -04:00
parent c9c5a9b79e
commit 4f131147af

View file

@ -18,14 +18,11 @@
#include <stddef.h>
#include <functional>
#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_