Remove overloading

This commit is contained in:
Christophe Bedard 2019-06-14 10:19:03 +02:00
parent 35092f89ff
commit febd4317dc
2 changed files with 0 additions and 19 deletions

View file

@ -125,14 +125,6 @@ void TRACEPOINT(
const void * callback, const void * callback,
const bool is_intra_process); const bool is_intra_process);
/**
* tp: callback_start
* (is_intra_process=false)
*/
void TRACEPOINT(
callback_start,
const void * callback);
/** /**
* tp: callback_end * tp: callback_end
*/ */

View file

@ -183,17 +183,6 @@ void TRACEPOINT(
(is_intra_process ? 1 : 0)); (is_intra_process ? 1 : 0));
} }
void TRACEPOINT(
callback_start,
const void * callback)
{
CONDITIONAL_TP(
ros2,
callback_start,
callback,
0);
}
void TRACEPOINT( void TRACEPOINT(
callback_end, callback_end,
const void * callback) const void * callback)