| Issue | 115055 |
|---|---|
| Summary | False positive bugprone-throw-keyword-missing with NSDMI |
| Labels | clang-tidy, false-positive |
| Assignees | |
| Reporter | carlosgalvezp |
Example:
```cpp
struct RegularException
{
RegularException(int);
};
class Foo
{
public:
Foo(){}
private:
RegularException x_{123};
};
```
[Godbolt](https://godbolt.org/z/47rsz97hf)
_______________________________________________ llvm-bugs mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs
