mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Fix rustc warning
It only appeared after I updated to Rust v1.90.0.
This commit is contained in:
+1
-1
@@ -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>>,
|
||||
|
||||
Reference in New Issue
Block a user