False positive - tuple unpacking bracket detected as variable
Đang mở
false-positive
- Ngôn ngữ chính
- CodeQL
- Star
- 10.1k
- Fork
- 2.1k
- Merge trung bình
- 2 ngày 15 giờ
- Pull request đã merge (30 ngày)
- 141
Mô tả
**Description of the false positive**
tuple unpack left bracket detected as variable.

https://github.com/PhilipDeegan/PHARE/security/code-scanning/913
**Code samples or links to source code**
```c++
#include
void fn(std::tuple, std::tuple> const& tup){
auto const& [A,B] = tup;
auto const& [a0, a1, a2] a = A;
auto const& [b0, b1, b2] a = B;
// do something with a/b vals...
}
```
Hướng dẫn đóng góp
Đánh giá
Issue này chưa được đánh giá.