aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde2018-04-12 11:13:43 +0200
committerGitHub2018-04-12 11:13:43 +0200
commit23fc8ca223acb7a2150a57280a3ddf9abac575e3 (patch)
treeb37f81e12092d660ba95eaf6c525453a344e0c41
parent6862cd7bf15fc751bc03f3d5475e6ce2bed41a73 (diff)
parentdf2a626b49a4e8ead003ebefb9663c63156b4efa (diff)
downloadgodot-23fc8ca223acb7a2150a57280a3ddf9abac575e3.tar.gz
godot-23fc8ca223acb7a2150a57280a3ddf9abac575e3.tar.zst
godot-23fc8ca223acb7a2150a57280a3ddf9abac575e3.zip
Merge pull request #18140 from AndreaCatania/coverity1
Fixed wrong function call
-rw-r--r--modules/bullet/space_bullet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/bullet/space_bullet.cpp b/modules/bullet/space_bullet.cpp
index 9a88b4692..8450a66f6 100644
--- a/modules/bullet/space_bullet.cpp
+++ b/modules/bullet/space_bullet.cpp
@@ -996,7 +996,7 @@ public:
}
void reset() {
- result_collision_objects.empty();
+ result_collision_objects.clear();
}
};