1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 13:20:05 -04:00

clippy +nightly fix (#7723)

This commit is contained in:
Emil Ernerfeldt
2025-11-17 05:10:43 +01:00
committed by GitHub
parent 01770be13e
commit dc0acd2dd1
7 changed files with 11 additions and 13 deletions

View File

@@ -451,7 +451,7 @@ enum Action {
#[derive(Clone, Default)]
#[cfg_attr(feature = "serde", derive(serde::Deserialize, serde::Serialize))]
struct Tree(Vec<Tree>);
struct Tree(Vec<Self>);
impl Tree {
pub fn demo() -> Self {