aboutsummaryrefslogtreecommitdiff
path: root/src/vcall.h
diff options
context:
space:
mode:
authorGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-08-03 15:29:48 +0100
committerGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-08-03 15:29:48 +0100
commitb11cf48853bc4eccde60bc82180025f0797fa823 (patch)
tree7244ab889590066ff2a26ba3c1f475e7dae79130 /src/vcall.h
parent9853d19b4de3e66138da8b3e66ccdaea356ea35b (diff)
downloadsst-b11cf48853bc4eccde60bc82180025f0797fa823.tar.gz
sst-b11cf48853bc4eccde60bc82180025f0797fa823.zip
Use shorter spellings of __asm and __attribute
Turns out, there's no need for the trailing underscores. Plus, glibc does some stupid stuff with __attribute__ for non-GCC compilers. Not that that matters here, but it seems like a good practice just to use the forms that never have such problems. And it's shorter too.
Diffstat (limited to 'src/vcall.h')
-rw-r--r--src/vcall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vcall.h b/src/vcall.h
index f3a1f02..20cde7e 100644
--- a/src/vcall.h
+++ b/src/vcall.h
@@ -104,7 +104,7 @@
// I thought static inline was supposed to prevent unused warnings???
#if defined(__GNUC__) || defined(__clang__)
-#define _VCALL_UNUSED __attribute__((unused))
+#define _VCALL_UNUSED __attribute((unused))
#else
#define _VCALL_UNUSED
#endif