From 2f4d61ab551c3d12ee21f5cf1b1dddfa4b27507b Mon Sep 17 00:00:00 2001 From: Marvin D <41352111+IcePixelx@users.noreply.github.com> Date: Mon, 12 Dec 2022 17:26:35 +0100 Subject: [PATCH] ePluginCallback should be enum class --- r5dev/pluginsystem/pluginsystem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/pluginsystem/pluginsystem.h b/r5dev/pluginsystem/pluginsystem.h index 83883f69..eb39f745 100644 --- a/r5dev/pluginsystem/pluginsystem.h +++ b/r5dev/pluginsystem/pluginsystem.h @@ -12,7 +12,7 @@ struct PluginHelpWithAnything_t PLUGIN_UNREGISTER_CALLBACK }; - enum ePluginCallback : int16_t + enum class ePluginCallback : int16_t { CModAppSystemGroup_Create = 0 };