diff options
Diffstat (limited to 'editor/debugger/editor_debugger_node.h')
-rw-r--r-- | editor/debugger/editor_debugger_node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/debugger/editor_debugger_node.h b/editor/debugger/editor_debugger_node.h index 88b82d37fd..ff9601c026 100644 --- a/editor/debugger/editor_debugger_node.h +++ b/editor/debugger/editor_debugger_node.h @@ -42,7 +42,6 @@ class ScriptEditorDebugger; class TabContainer; class EditorDebuggerNode : public MarginContainer { - GDCLASS(EditorDebuggerNode, MarginContainer); public: @@ -71,8 +70,9 @@ private: int line = 0; bool operator<(const Breakpoint &p_b) const { - if (line == p_b.line) + if (line == p_b.line) { return source < p_b.source; + } return line < p_b.line; } |