mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Remove inline from constexpr variables
This commit is contained in:
parent
67c96c89cc
commit
5125a273dc
4 changed files with 5 additions and 5 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue