suyanhanx commented on code in PR #3484: URL: https://github.com/apache/incubator-opendal/pull/3484#discussion_r1387764386
########## bindings/nodejs/src/lib.rs: ########## @@ -15,6 +15,8 @@ // specific language governing permissions and limitations // under the License. +#![allow(clippy::not_unsafe_ptr_arg_deref)] Review Comment: This unsafe warning is from a macro [here](https://github.com/apache/incubator-opendal/pull/3484/files#diff-ca4184f1ae4e7a2a05946c3af8bceb7ecb303597fa60ed20047820cacb707b85R734). I don't how to mark a macro as unsafe. And seems that it's impossible to mark a macro as unsafe now. Marking the function as unsafe doesn't work. 🥲 ########## bindings/nodejs/src/lib.rs: ########## @@ -15,6 +15,8 @@ // specific language governing permissions and limitations // under the License. +#![allow(clippy::not_unsafe_ptr_arg_deref)] Review Comment: This unsafe warning is from a macro [here](https://github.com/apache/incubator-opendal/pull/3484/files#diff-ca4184f1ae4e7a2a05946c3af8bceb7ecb303597fa60ed20047820cacb707b85R734). I don't how to mark a macro as unsafe. And seems that it's impossible to mark a macro as unsafe now. Marking the function as unsafe doesn't work. 🥲 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
