Skip to content

Commit

Permalink
Fix data type
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKutzner committed Oct 4, 2024
1 parent 27b4364 commit 48b7d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/loader/gtfs/shape.cc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace nigiri::loader::gtfs {

void resize(auto& bucket, std::size_t size) {
for ([[maybe_unused]] auto const _ : interval{bucket.size(), size}) {
bucket.push_back(0);
bucket.push_back(0.0);
}
}

Expand Down

0 comments on commit 48b7d26

Please sign in to comment.