mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 07:27:22 +01:00
50cf6e7ddf
PR-URL: https://github.com/nodejs/node/pull/24886 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
10 lines
259 B
Python
10 lines
259 B
Python
# flake8: noqa
|
|
|
|
macro DCHECK(x) = void(x);
|
|
macro DCHECK_EQ(a, b) = void(a, b);
|
|
macro DCHECK_GE(a, b) = void(a, b);
|
|
macro DCHECK_GT(a, b) = void(a, b);
|
|
macro DCHECK_LE(a, b) = void(a, b);
|
|
macro DCHECK_LT(a, b) = void(a, b);
|
|
macro DCHECK_NE(a, b) = void(a, b);
|