PURE_VIRTUAL macro fix

This commit is contained in:
2026-01-16 03:02:17 +05:30
parent ad34a30d16
commit 71a92b8510

View File

@ -212,7 +212,7 @@
#define FORWARD_DECLARE(t, i) t i #define FORWARD_DECLARE(t, i) t i
#ifdef __cplusplus #ifdef __cplusplus
# define PURE_VIRTUAL(f) VIRTUAL f = 0 # define PURE_VIRTUAL(...) VIRTUAL __VA_ARGS__ = 0
#endif #endif
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------