Upgrade clang compiler in CI builds (#6861)

This commit is contained in:
Dennis Luxen
2024-05-06 18:12:17 +02:00
committed by GitHub
parent 6d361ced41
commit 99809e105c
5 changed files with 52 additions and 33 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ trimLaneString(std::string lane_string, std::int32_t count_left, std::int32_t co
OSRM_ATTR_WARN_UNUSED
inline std::string applyAccessTokens(std::string lane_string, const std::string &access_tokens)
{
typedef boost::tokenizer<boost::char_separator<char>> tokenizer;
using tokenizer = boost::tokenizer<boost::char_separator<char>>;
boost::char_separator<char> sep("|", "", boost::keep_empty_tokens);
tokenizer tokens(lane_string, sep);
tokenizer access(access_tokens, sep);