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

Commit

Permalink
Temporary commit to fix trace event macro
Browse files Browse the repository at this point in the history
  • Loading branch information
nitsakh authored and zcbenz committed Apr 11, 2019
1 parent ccee7f4 commit cb2d99a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/node_internals.h
Original file line number Diff line number Diff line change
Expand Up @@ -342,10 +342,11 @@ class TraceEventScope {
TraceEventScope(const char* category,
const char* name,
void* id) : category_(category), name_(name), id_(id) {
TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(category_, name_, id_);
// TRACE_EVENT_NESTABLE_ASYNC_BEGIN0(category_, name_, id_);
(void) category_; (void)name_; (void)id_;
}
~TraceEventScope() {
TRACE_EVENT_NESTABLE_ASYNC_END0(category_, name_, id_);
// TRACE_EVENT_NESTABLE_ASYNC_END0(category_, name_, id_);
}

private:
Expand Down

0 comments on commit cb2d99a

Please sign in to comment.