forked from quickshell/quickshell
lint: remove reinterpret_cast lint
Unhelpful.
This commit is contained in:
parent
be5e5fc4a5
commit
3fc1c914c7
15 changed files with 41 additions and 72 deletions
|
@ -67,9 +67,7 @@ QDebug operator<<(QDebug debug, const PwBindableObject* object);
|
|||
template <typename T, StringLiteral INTERFACE, quint32 VERSION>
|
||||
class PwBindable: public PwBindableObject {
|
||||
public:
|
||||
T* proxy() {
|
||||
return reinterpret_cast<T*>(this->object); // NOLINT
|
||||
}
|
||||
T* proxy() { return reinterpret_cast<T*>(this->object); }
|
||||
|
||||
protected:
|
||||
void bind() override {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue