small whitespace fix
Just because QtCreator auto-fixed it for me... Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
343ed43581
commit
d15ecef706
@ -606,7 +606,7 @@ template<typename T1, typename T2>
|
||||
auto pair_lower_bound(std::vector<std::pair<T1, T2>> &v, const T1 &value)
|
||||
{
|
||||
return std::lower_bound(v.begin(), v.end(), value,
|
||||
[] (const std::pair<T1, T2> &entry, const T1 &value) {
|
||||
[] (const std::pair<T1, T2> &entry, const T1 &value) {
|
||||
return entry.first < value;
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user