Simplify reflection usage in Actor code.

The fixed version is shorter, and doesn't use unstable features.
This commit is contained in:
Eli Friedman 2015-08-30 19:01:15 -07:00
parent 9b2aa095f2
commit 5215b51b55
3 changed files with 15 additions and 63 deletions

View file

@ -11,12 +11,8 @@
#![crate_type = "rlib"]
#![feature(box_syntax)]
#![feature(core)]
#![feature(custom_derive)]
#![feature(get_type_id)]
#![feature(plugin)]
#![feature(raw)]
#![feature(reflect_marker)]
#![plugin(serde_macros)]
#![allow(non_snake_case)]
@ -25,7 +21,6 @@
#[macro_use]
extern crate log;
extern crate core;
extern crate devtools_traits;
extern crate rustc_serialize;
extern crate ipc_channel;