You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Disable clippy lint 'self-named-constructors' for Null::null()
The following warning (as error) was generated:
-------------------------------------------------------
error: constructor `null` has the same name as the type
--> gdnative-core\src\object.rs:1023:5
|
1023 | / pub fn null() -> Self {
1024 | | Null(PhantomData)
1025 | | }
| |_____^
|
= note: `-D clippy::self-named-constructors` implied by `-D clippy::style`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#self_named_constructors
-------------------------------------------------------
0 commit comments