tools/virtio: replace "__auto_type" with "auto"

Replace one instance of "__auto_type" with "auto" in:

	tools/virtio/linux/compiler.h

This file *does* include <linux/compiler_types.h> directly, so there
is no need to duplicate the definition.

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
master
H. Peter Anvin 2025-07-19 23:47:22 -07:00
parent c278d72b99
commit 4ecc26fa58
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
*/
#define data_race(expr) \
({ \
__auto_type __v = (expr); \
auto __v = (expr); \
__v; \
})