Merge pull request #30703 from hbina/patch-1

Make comparison operator== const in EditorAutoloadSettings
This commit is contained in:
Rémi Verschelde 2019-07-20 12:05:46 +02:00 committed by GitHub
commit 7c11099587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}