File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,7 @@ namespace {
125
125
126
126
void set_to_same_type (geometry_t *output, geometry_t const &input)
127
127
{
128
+ // NOLINTNEXTLINE(performance-unnecessary-value-param)
128
129
input.visit ([&](auto in) { output->set <decltype (in)>(); });
129
130
}
130
131
@@ -434,7 +435,7 @@ class split_visitor
434
435
{}
435
436
436
437
template <typename T>
437
- void operator ()(T) const
438
+ void operator ()(T const & ) const
438
439
{}
439
440
440
441
// false positive https://github.com/llvm/llvm-project/issues/74738
@@ -544,8 +545,9 @@ namespace {
544
545
* empty, do not add the first point returned by *it.
545
546
*/
546
547
template <typename ITERATOR>
547
- void add_nodes_to_linestring (linestring_t *linestring, ITERATOR it,
548
- ITERATOR end)
548
+ void add_nodes_to_linestring (
549
+ linestring_t *linestring, ITERATOR it,
550
+ ITERATOR end) // NOLINT(performance-unnecessary-value-param)
549
551
{
550
552
if (!linestring->empty ()) {
551
553
assert (it != end);
Original file line number Diff line number Diff line change 19
19
*
20
20
* Returns if a match was found.
21
21
*/
22
+ // NOLINTNEXTLINE(misc-use-internal-linkage) Seems there is a bug in the checker
22
23
bool wild_match (char const *expr, char const *str) noexcept
23
24
{
24
25
// Code based on
You can’t perform that action at this time.
0 commit comments