Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fixup! src: use C++14 deprecated attribute for NODE_DEPRECATED
  • Loading branch information
addaleax committed Jun 5, 2026
commit bf3803b8430c16496b76a09b4e174a5e1cc0733b
2 changes: 1 addition & 1 deletion src/node.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
# define NODE_DEPRECATED(message, declarator) declarator
#else // NODE_WANT_INTERNALS
# define NODE_DEPRECATED(message, declarator) [[deprecated(message)]] declarator
#define NODE_DEPRECATED(message, declarator) [[deprecated(message)]] declarator
#endif

// Forward-declare libuv loop
Expand Down
Loading