First take at distance table API re-write

This commit is contained in:
Daniel J. Hofmann
2016-02-12 14:49:28 -08:00
committed by Patrick Niklaus
parent b58edc980c
commit d87a19b2f9
7 changed files with 164 additions and 194 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ struct TableParameters : public BaseParameters
return false;
// 3/ 0 <= index < len(locations)
const auto is_not_in_range = [](const std::size_t x)
const auto not_in_range = [this](const std::size_t x)
{
return x >= coordinates.size();
};