소스 검색

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();
 	}
 };