mirror of
https://github.com/godotengine/godot.git
synced 2025-10-23 18:03:35 +00:00
Always use String
as StringName
backing internally.
This commit is contained in:
parent
1696ab0cb6
commit
91fe434a86
16 changed files with 245 additions and 383 deletions
|
@ -132,7 +132,7 @@ void finish_language() {
|
|||
StringName GDScriptTestRunner::test_function_name;
|
||||
|
||||
GDScriptTestRunner::GDScriptTestRunner(const String &p_source_dir, bool p_init_language, bool p_print_filenames, bool p_use_binary_tokens) {
|
||||
test_function_name = StaticCString::create("test");
|
||||
test_function_name = StringName("test");
|
||||
do_init_languages = p_init_language;
|
||||
print_filenames = p_print_filenames;
|
||||
binary_tokens = p_use_binary_tokens;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue