浏览代码

Merge pull request #18140 from AndreaCatania/coverity1

Fixed wrong function call
Rémi Verschelde 7 年之前
父节点
当前提交
23fc8ca223
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      modules/bullet/space_bullet.cpp

+ 1 - 1
modules/bullet/space_bullet.cpp

@@ -996,7 +996,7 @@ public:
 	}
 
 	void reset() {
-		result_collision_objects.empty();
+		result_collision_objects.clear();
 	}
 };