@@ -220,7 +220,7 @@ impl<T> RendererContext<T> {
220
220
221
221
/// Gets the raw pointer to the SDL_Renderer
222
222
// this can prevent introducing UB until
223
- // https://github.com/rust-lang/rust-clippy/issues/3992 is fixed
223
+ // https://github.com/rust-lang/rust-clippy/issues/5953 is fixed
224
224
#[ allow( clippy:: trivially_copy_pass_by_ref) ]
225
225
pub fn raw ( & self ) -> * mut sys:: SDL_Renderer {
226
226
self . raw
@@ -788,7 +788,7 @@ fn ll_create_texture(context: *mut sys::SDL_Renderer,
788
788
/// Texture-creating methods for the renderer
789
789
impl < T > TextureCreator < T > {
790
790
// this can prevent introducing UB until
791
- // https://github.com/rust-lang/rust-clippy/issues/3992 is fixed
791
+ // https://github.com/rust-lang/rust-clippy/issues/5953 is fixed
792
792
#[ allow( clippy:: trivially_copy_pass_by_ref) ]
793
793
pub fn raw ( & self ) -> * mut sys:: SDL_Renderer {
794
794
self . context . raw ( )
@@ -929,7 +929,7 @@ impl<T> TextureCreator<T> {
929
929
/// Drawing methods
930
930
impl < T : RenderTarget > Canvas < T > {
931
931
// this can prevent introducing UB until
932
- // https://github.com/rust-lang/rust-clippy/issues/3992 is fixed
932
+ // https://github.com/rust-lang/rust-clippy/issues/5953 is fixed
933
933
#[ allow( clippy:: trivially_copy_pass_by_ref) ]
934
934
pub fn raw ( & self ) -> * mut sys:: SDL_Renderer {
935
935
self . context . raw ( )
@@ -2158,7 +2158,7 @@ impl<'r> Texture<'r> {
2158
2158
2159
2159
#[ inline]
2160
2160
// this can prevent introducing UB until
2161
- // https://github.com/rust-lang/rust-clippy/issues/3992 is fixed
2161
+ // https://github.com/rust-lang/rust-clippy/issues/5953 is fixed
2162
2162
#[ allow( clippy:: trivially_copy_pass_by_ref) ]
2163
2163
pub const fn raw ( & self ) -> * mut sys:: SDL_Texture {
2164
2164
self . raw
@@ -2341,7 +2341,7 @@ impl<> Texture<> {
2341
2341
2342
2342
#[ inline]
2343
2343
// this can prevent introducing UB until
2344
- // https://github.com/rust-lang/rust-clippy/issues/3992 is fixed
2344
+ // https://github.com/rust-lang/rust-clippy/issues/5953 is fixed
2345
2345
#[ allow( clippy:: trivially_copy_pass_by_ref) ]
2346
2346
pub const fn raw ( & self ) -> * mut sys:: SDL_Texture {
2347
2347
self . raw
0 commit comments