mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +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)
|
||||
{
|
||||
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…
Reference in a new issue