mystor / rust-cpp

Embed C++ directly inside your rust code!
Apache License 2.0
798 stars 44 forks source link

mute clippy lint properly #51

Closed karroffel closed 5 years ago

karroffel commented 5 years ago

I noticed that clippy showed errors inside of the cpp! macro.

There was code in place already to mute those errors, but apparently the format of the attribute changed over the last few months (??).

This change makes the errors disappear for me.

ogoffart commented 5 years ago

Thanks