Issue 130745
Summary Clang-tidy: False positive readability-redundant-inline-specifier on out-of-line explicitly defaulted constructors
Labels clang-tidy
Assignees
Reporter Eisenwave
    https://godbolt.org/z/Eqf1Er9M5
```cpp
struct awoo {
    ~awoo();
};

inline awoo::~awoo() = default;
```
```
<source>:5:1: warning: function '~awoo' has inline specifier but is implicitly inlined [readability-redundant-inline-specifier]
    5 | inline awoo::~awoo() = default;
      | ^~~~~~
1 warning generated.
```
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to