summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-07-20 12:05:46 +0200
committerGitHub <noreply@github.com>2019-07-20 12:05:46 +0200
commit7c1109958761b9e35597d66c293d1ab75f1bba91 (patch)
treea263f31487f01d587f67b2026bb5728b7a2dcc72 /editor
parentd15cf7b672ac9911b4e82fed52b4c5e8d4312b0d (diff)
parent4dc717ea07915124b0250e23e98063f712f1c038 (diff)
Merge pull request #30703 from hbina/patch-1
Make comparison operator== const in EditorAutoloadSettings
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_autoload_settings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_autoload_settings.h b/editor/editor_autoload_settings.h
index 76ce020d8a..1ea2950df4 100644
--- a/editor/editor_autoload_settings.h
+++ b/editor/editor_autoload_settings.h
@@ -56,7 +56,7 @@ class EditorAutoloadSettings : public VBoxContainer {
int order;
Node *node;
- bool operator==(const AutoLoadInfo &p_info) {
+ bool operator==(const AutoLoadInfo &p_info) const {
return order == p_info.order;
}