mirror of
https://github.com/emilk/egui.git
synced 2026-08-29 04:40:03 -04:00
Enable clippy::iter_over_hash_type lint (#7421)
This helped discover a few things that _might_ have been buggy.
This commit is contained in:
@@ -698,6 +698,7 @@ impl Painter {
|
||||
unsafe fn destroy_gl(&self) {
|
||||
unsafe {
|
||||
self.gl.delete_program(self.program);
|
||||
#[expect(clippy::iter_over_hash_type)]
|
||||
for tex in self.textures.values() {
|
||||
self.gl.delete_texture(*tex);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user