Fix rustc warning

It only appeared after I updated to Rust v1.90.0.
This commit is contained in:
Oliver Hamlet
2025-09-28 13:41:04 +01:00
parent 6bc6113bb7
commit ef2797838d
+1 -1
View File
@@ -140,7 +140,7 @@ impl From<GameType> for esplugin::GameId {
pub struct Game {
base_type: GameType,
install_path: PathBuf,
load_order: Box<(dyn WritableLoadOrder + Send + Sync + 'static)>,
load_order: Box<dyn WritableLoadOrder + Send + Sync + 'static>,
// Stored in an Arc<RwLock<_>> to support loading metadata in parallel with
// loading plugins.
database: Arc<RwLock<Database>>,