mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -606,7 +606,7 @@ template<typename T1, typename T2>
|
||||||
auto pair_lower_bound(std::vector<std::pair<T1, T2>> &v, const T1 &value)
|
auto pair_lower_bound(std::vector<std::pair<T1, T2>> &v, const T1 &value)
|
||||||
{
|
{
|
||||||
return std::lower_bound(v.begin(), v.end(), 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;
|
return entry.first < value;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue