mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 02:03:37 +08:00
64254629f7
i.e. x ? x : y => x ?: y
8 lines
170 B
Plaintext
8 lines
170 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/* See: https://gcc.gnu.org/onlinedocs/gcc/Conditionals.html#Conditionals */
|
|
@@
|
|
expression e, x;
|
|
@@
|
|
- e ? e : x
|
|
+ e ?: x
|