Remove inline from constexpr variables

This commit is contained in:
kobewi 2025-04-28 21:09:43 +02:00
parent 67c96c89cc
commit 5125a273dc
4 changed files with 5 additions and 5 deletions

View file

@ -43,7 +43,7 @@ class EditorContextMenuPlugin : public RefCounted {
friend class EditorContextMenuPluginManager;
inline static constexpr int MAX_ITEMS = 100;
static constexpr int MAX_ITEMS = 100;
public:
enum ContextMenuSlot {
@ -55,7 +55,7 @@ public:
CONTEXT_SLOT_SCENE_TABS,
CONTEXT_SLOT_2D_EDITOR,
};
inline static constexpr int BASE_ID = 2000;
static constexpr int BASE_ID = 2000;
private:
int slot = -1;