File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ class EditorResourcePreviewGenerator : public RefCounted {
7373class EditorResourcePreview : public Node {
7474 GDCLASS (EditorResourcePreview, Node);
7575
76- inline static constexpr int CURRENT_METADATA_VERSION = 1 ; // Increment this number to invalidate all previews.
76+ static constexpr int CURRENT_METADATA_VERSION = 1 ; // Increment this number to invalidate all previews.
7777 inline static EditorResourcePreview *singleton = nullptr ;
7878
7979 struct QueueItem {
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class EditorContextMenuPlugin : public RefCounted {
4343
4444 friend class EditorContextMenuPluginManager ;
4545
46- inline static constexpr int MAX_ITEMS = 100 ;
46+ static constexpr int MAX_ITEMS = 100 ;
4747
4848public:
4949 enum ContextMenuSlot {
@@ -55,7 +55,7 @@ class EditorContextMenuPlugin : public RefCounted {
5555 CONTEXT_SLOT_SCENE_TABS,
5656 CONTEXT_SLOT_2D_EDITOR,
5757 };
58- inline static constexpr int BASE_ID = 2000 ;
58+ static constexpr int BASE_ID = 2000 ;
5959
6060private:
6161 int slot = -1 ;
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ class ColorPickerShapeRectangle : public ColorPickerShape {
107107class ColorPickerShapeWheel : public ColorPickerShape {
108108 GDCLASS (ColorPickerShapeWheel, ColorPickerShape);
109109
110- inline static constexpr float WHEEL_RADIUS = 0.42 ;
110+ static constexpr float WHEEL_RADIUS = 0.42 ;
111111
112112 MarginContainer *wheel_margin = nullptr ;
113113 Control *wheel = nullptr ;
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ class Animation : public Resource {
4343 typedef uint32_t TypeHash;
4444
4545 static inline String PARAMETERS_BASE_PATH = " parameters/" ;
46- static inline constexpr real_t DEFAULT_STEP = 1.0 / 30 ;
46+ static constexpr real_t DEFAULT_STEP = 1.0 / 30 ;
4747
4848 enum TrackType : uint8_t {
4949 TYPE_VALUE, // Set a value in a property, can be interpolated.
You can’t perform that action at this time.
0 commit comments