1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

added a const keyword for a methods that return constant literal...

This commit is contained in:
hbina085
2019-05-20 13:36:24 -04:00
parent 9643b2b6de
commit f78baa5f93
24 changed files with 24 additions and 24 deletions

View File

@@ -330,7 +330,7 @@ Map<int, TextEdit::HighlighterInfo> GDScriptSyntaxHighlighter::_get_line_syntax_
return color_map;
}
String GDScriptSyntaxHighlighter::get_name() {
String GDScriptSyntaxHighlighter::get_name() const {
return "GDScript";
}