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:
committed by
Zach Laine
parent
b273133fd2
commit
a7c7470bc1
@@ -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;
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user