Update CHANGELOG with bugfix notes.

This commit is contained in:
Daniel Patterson 2017-07-31 08:33:19 -07:00
parent 9dfbae69cc
commit 0e77cf53f6
No known key found for this signature in database
GPG Key ID: 19C12BE1725A028B
2 changed files with 3 additions and 0 deletions

View File

@ -17,6 +17,7 @@
- Guidance: add support for throughabouts
- Bugfixes
- Properly save/retrieve datasource annotations for road segments ([#4346](https://github.com/Project-OSRM/osrm-backend/issues/4346)
- Fix conditional restriction grammer parsing so it works for single-day-of-week restrictions ([#4357](https://github.com/Project-OSRM/osrm-backend/pull/4357))
- Algorithm)
- BREAKING: the file format requires re-processing due to the changes on via-ways
- Added support for via-way restrictions

View File

@ -343,6 +343,8 @@ int RestrictionsCheckCommand(const char *executable, const std::vector<std::stri
// For each conditional restriction if condition is active than print a line
for (auto &value : conditional_restrictions)
{
std::cout << value << std::endl;
const auto &location = value.location;
const auto &restriction = value.restriction;