From dbfbad575b06860871d0549fed966a3192430834 Mon Sep 17 00:00:00 2001 From: "florent.teppe" Date: Wed, 20 Jul 2022 10:51:08 +0200 Subject: [PATCH] Fixes GCC compilation, hopefully for good --- apps/openmw/mwworld/esmstore.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/openmw/mwworld/esmstore.cpp b/apps/openmw/mwworld/esmstore.cpp index dbc7e429f7..ba88dfdd7d 100644 --- a/apps/openmw/mwworld/esmstore.cpp +++ b/apps/openmw/mwworld/esmstore.cpp @@ -129,7 +129,7 @@ namespace static int sRecordTypeCounter = 0; -#define OPENMW_ESM_ADD_STORE_TYPE(__Type)template<> const int MWWorld::SRecordType<__Type>::sRecordId = sRecordTypeCounter++; +#define OPENMW_ESM_ADD_STORE_TYPE(__Type)template<> const int MWWorld::SRecordType<__Type>::sRecordId = sRecordTypeCounter++ OPENMW_ESM_ADD_STORE_TYPE(ESM::Activator); OPENMW_ESM_ADD_STORE_TYPE(ESM::Potion);