summaryrefslogtreecommitdiffstats
path: root/modules/gdscript/tests/scripts/runtime/features
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-10-03 17:25:28 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-10-03 17:25:28 +0200
commite41582f42f471fffc7302e1b6b7cbec29231c666 (patch)
tree695ada619266b4d7ce568ad7ce8e387752ceba6a /modules/gdscript/tests/scripts/runtime/features
parent19c72e847df823a7a22cae8194080269bfbff980 (diff)
parentba96d4f63160a0c20f35906ecb536dbb2ae53f94 (diff)
downloadredot-engine-e41582f42f471fffc7302e1b6b7cbec29231c666.tar.gz
Merge pull request #82547 from dalexeev/gds-fix-unsafe-call-arg-variant-constructors
GDScript: Fix `UNSAFE_CALL_ARGUMENT` warning for `Variant` constructors
Diffstat (limited to 'modules/gdscript/tests/scripts/runtime/features')
-rw-r--r--modules/gdscript/tests/scripts/runtime/features/stringify.gd1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/gdscript/tests/scripts/runtime/features/stringify.gd b/modules/gdscript/tests/scripts/runtime/features/stringify.gd
index 1e66d8f34a..0dbb252b0e 100644
--- a/modules/gdscript/tests/scripts/runtime/features/stringify.gd
+++ b/modules/gdscript/tests/scripts/runtime/features/stringify.gd
@@ -24,7 +24,6 @@ func test():
print(StringName("hello"))
print(NodePath("hello/world"))
var node := Node.new()
- @warning_ignore("unsafe_call_argument")
print(RID(node)) # TODO: Why is the constructor (or implicit cast) not documented?
print(node.get_name)
print(node.property_list_changed)