diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2021-06-04 18:39:30 +0100 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2021-06-04 18:39:30 +0100 |
commit | beae6527e080f865396cc5e50c06bcf2dafac6cf (patch) | |
tree | f143dbd33c2a80f493360c811d44d821b3e34cda | |
parent | 766c6dbb24c736eb1e24ca69eb15398eac654c2c (diff) |
Add missing override keyword to CSharpLanguage::is_control_flow_keyword()
-rw-r--r-- | modules/mono/csharp_script.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/csharp_script.h b/modules/mono/csharp_script.h index 992c7e93c8..145bf8cf85 100644 --- a/modules/mono/csharp_script.h +++ b/modules/mono/csharp_script.h @@ -470,7 +470,7 @@ public: /* EDITOR FUNCTIONS */ void get_reserved_words(List<String> *p_words) const override; - bool is_control_flow_keyword(String p_keyword) const; + bool is_control_flow_keyword(String p_keyword) const override; void get_comment_delimiters(List<String> *p_delimiters) const override; void get_string_delimiters(List<String> *p_delimiters) const override; Ref<Script> get_template(const String &p_class_name, const String &p_base_class_name) const override; |