Skip to content
This repository was archived by the owner on Mar 4, 2020. It is now read-only.

Commit d0b2089

Browse files
nitsakhzcbenz
authored andcommitted
fixme: Comment trace event macro
1 parent 6e15b0c commit d0b2089

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/node_internals.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -342,10 +342,11 @@ class TraceEventScope {
342342
TraceEventScope(const char* category,
343343
const char* name,
344344
void* id) : category_(category), name_(name), id_(id) {
345-
TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(category_, name_, id_);
345+
// TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(category_, name_, id_);
346+
(void) category_; (void)name_; (void)id_;
346347
}
347348
~TraceEventScope() {
348-
TRACE_EVENT_NESTABLE_ASYNC_END0(category_, name_, id_);
349+
// TRACE_EVENT_NESTABLE_ASYNC_END0(category_, name_, id_);
349350
}
350351

351352
private:

0 commit comments

Comments
 (0)