Skip to content

Commit 4860b0d

Browse files
committed
Merge branch 'main' into feature/vsg-visualization
2 parents 336d30d + 5dba5c6 commit 4860b0d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/hydro/hydro_system.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ HydroSystem::HydroSystem(std::vector<std::shared_ptr<ChBody>> user_bodies,
282282
// pairs a body with its 6×6N row of the infinite-frequency added mass matrix.
283283
const auto& body_info = file_info_.GetBodyInfos();
284284
ChBodyAddedMassBlocks body_blocks;
285-
for (int i = 0; i < num_bodies_; i++) {
285+
for (size_t i = 0; i < num_bodies_; i++) {
286286
body_blocks.push_back({bodies_[i], body_info[i].inf_added_mass});
287287
}
288288
if (num_bodies_ > 0) {

0 commit comments

Comments
 (0)