[*] Drop SOO suffix

(breaking source compatibility with AuRT - thread primitives will need refactoring to prevent conflicts)
This commit is contained in:
Reece Wilson 2023-04-23 19:07:05 +01:00
parent b61015a6a5
commit 8a2beae2a3

View File

@ -84,7 +84,8 @@ struct Type ## SOO
} \
}; \
\
using Type ## SOO_t = Type ## SOO;
using Type ## SOO_t = Type ## SOO; \
using Type = Type ## SOO;
#define AUROXTL_INTERFACE_SOO_HDR(Type, extends, targetSize, ...) \
AUROXTL_INTERFACE_SOO_HDR_EX(, Type, extends, targetSize, ## __VA_ARGS__)