Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Phoneme cleanup #3356

Merged
merged 11 commits into from
Oct 13, 2021
Prev Previous commit
Next Next commit
renamed route_num_type to is_route_num_type
  • Loading branch information
gknisely committed Oct 13, 2021
commit 596ce707c3379d52f2a116fc1a3a8fb6966b3082
2 changes: 1 addition & 1 deletion src/mjolnir/graphtilebuilder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ GraphTileBuilder::GraphTileBuilder(const std::string& tile_dir,
// Create sign builders
for (uint32_t i = 0; i < header_->signcount(); i++) {
name_info.insert({signs_[i].text_offset()});
signs_builder_.emplace_back(signs_[i].index(), signs_[i].type(), signs_[i].route_num_type(),
signs_builder_.emplace_back(signs_[i].index(), signs_[i].type(), signs_[i].is_route_num_type(),
signs_[i].tagged(), signs_[i].text_offset());
}

Expand Down