Skip to content

Commit

Permalink
C++17 support (VS2022)
Browse files Browse the repository at this point in the history
  • Loading branch information
willamowius committed Nov 22, 2023
1 parent f173eab commit 3af9b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Routing.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -2635,7 +2635,7 @@ void URIServicePolicy::LoadConfig(const PString & instance)
PTRACE(4, "ROUTING\tPolicy " << m_name << " " << service << " Could not resolve " << gwDestination);
continue;
}
m_uriServiceRoute.insert(make_pair(service, dest));
m_uriServiceRoute.insert(std::make_pair(service, dest));
}
}

Expand Down

0 comments on commit 3af9b5c

Please sign in to comment.