fix ambiguous calls to type_id preventing compilation on nightly
This commit is contained in:
@@ -622,7 +622,7 @@ impl Engine {
|
||||
}
|
||||
|
||||
fn nice_type_name(&self, b: Box<Any>) -> String {
|
||||
let tid = (&*b).type_id();
|
||||
let tid = <Any as Any>::type_id(&*b);
|
||||
if let Some(name) = self.type_names.get(&tid) {
|
||||
name.to_string()
|
||||
} else {
|
||||
|
Reference in New Issue
Block a user