Minor modification #6073

This commit is contained in:
Alexey Milovidov 2019-07-20 00:09:28 +03:00
parent 746fe5cdac
commit 9a9e6b7a44

View File

@ -140,6 +140,6 @@
/// It could be any magic number.
#define DBMS_DISTRIBUTED_SENDS_MAGIC_NUMBER 0xCAFECABE
/// A macro for suppressing warnings about unused variables. Useful for
/// structured bindings which have no standard way to declare this.
#define UNUSED_VARIABLE(X) (void) (X)
/// A macro for suppressing warnings about unused variables or function results.
/// Useful for structured bindings which have no standard way to declare this.
#define UNUSED(X) (void) (X)