From 71a92b8510541f56f6dd70ac6e138b63b35753ab Mon Sep 17 00:00:00 2001 From: dev0 Date: Fri, 16 Jan 2026 03:02:17 +0530 Subject: [PATCH] PURE_VIRTUAL macro fix --- Src/IACore/inc/IACore/PCH.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/IACore/inc/IACore/PCH.hpp b/Src/IACore/inc/IACore/PCH.hpp index 61196d0..e8f28af 100644 --- a/Src/IACore/inc/IACore/PCH.hpp +++ b/Src/IACore/inc/IACore/PCH.hpp @@ -212,7 +212,7 @@ #define FORWARD_DECLARE(t, i) t i #ifdef __cplusplus -# define PURE_VIRTUAL(f) VIRTUAL f = 0 +# define PURE_VIRTUAL(...) VIRTUAL __VA_ARGS__ = 0 #endif // -----------------------------------------------------------------------------