From ab745820590784b67220f1878bac83db6ddbcef2 Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Wed, 6 Aug 2025 00:02:22 -0400 Subject: [PATCH] Fix clangd error with HIO macro --- include/m_Do/m_Do_hostIO.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/m_Do/m_Do_hostIO.h b/include/m_Do/m_Do_hostIO.h index b9660b4ee..1db57cff1 100644 --- a/include/m_Do/m_Do_hostIO.h +++ b/include/m_Do/m_Do_hostIO.h @@ -13,9 +13,9 @@ class JOREvent; class JORServer; #if VERSION == VERSION_DEMO -#define HIO(name) l_HIO.##name +#define HIO(name) l_HIO.name #else -#define HIO(name) L_HIO::##name +#define HIO(name) L_HIO::name #endif class JORMContext {