Skip to content

Commit bf3803b

Browse files
committed
fixup! src: use C++14 deprecated attribute for NODE_DEPRECATED
1 parent df4f85f commit bf3803b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
#if defined(NODE_WANT_INTERNALS) && NODE_WANT_INTERNALS
112112
# define NODE_DEPRECATED(message, declarator) declarator
113113
#else // NODE_WANT_INTERNALS
114-
# define NODE_DEPRECATED(message, declarator) [[deprecated(message)]] declarator
114+
#define NODE_DEPRECATED(message, declarator) [[deprecated(message)]] declarator
115115
#endif
116116

117117
// Forward-declare libuv loop

0 commit comments

Comments
 (0)