2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-19 04:22:13 +00:00

Remove unused lambda capture

str is unused in the lambda; remove it from the capture

Signed-off-by: Vernon Mauery <vernon.mauery@intel.com>
This commit is contained in:
Vernon Mauery
2024-10-26 16:44:51 -07:00
committed by Zach Laine
parent b273133fd2
commit a7c7470bc1

View File

@@ -1629,7 +1629,7 @@ namespace boost { namespace parser {
initial_elements.begin(),
initial_elements.end(),
str,
[&str](auto const & a, auto b) {
[](auto const & a, auto b) {
return a.first < b;
});
};