Merge pull request #82 from dkushner/bugfix/nightly-type-id
Fix ambiguous calls to `type_id()` preventing compilation on 1.35-nightly.
This commit is contained in:
commit
b114c0d420
@ -37,7 +37,7 @@ impl Any {
|
|||||||
#[inline]
|
#[inline]
|
||||||
pub fn is<T: Any>(&self) -> bool {
|
pub fn is<T: Any>(&self) -> bool {
|
||||||
let t = TypeId::of::<T>();
|
let t = TypeId::of::<T>();
|
||||||
let boxed = self.type_id();
|
let boxed = <Any as Any>::type_id(self);
|
||||||
|
|
||||||
t == boxed
|
t == boxed
|
||||||
}
|
}
|
||||||
|
@ -622,7 +622,7 @@ impl Engine {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn nice_type_name(&self, b: Box<Any>) -> String {
|
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) {
|
if let Some(name) = self.type_names.get(&tid) {
|
||||||
name.to_string()
|
name.to_string()
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user