diff options
author | Daniel Schadt <kingdread@gmx.de> | 2018-04-25 19:41:43 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2018-04-25 19:41:43 +0200 |
commit | 85e203629580192413dbaa8156c2b4ca351c4bfc (patch) | |
tree | 8b41109b0f5e97c04df1716f1f09230a8c1bf828 /src/lib.rs | |
parent | 6d0e4a82f298dbd282214d458d2e00e8a52c0768 (diff) | |
download | evtclib-85e203629580192413dbaa8156c2b4ca351c4bfc.tar.gz evtclib-85e203629580192413dbaa8156c2b4ca351c4bfc.tar.bz2 evtclib-85e203629580192413dbaa8156c2b4ca351c4bfc.zip |
introduce trackers
Trackers help us to keep the code somewhat cleaner, especially in the
statistics::calculate function.
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -16,7 +16,7 @@ //! //! (Look at the note on "Buffering" in the [parser //! module](raw/parser/index.html#buffering)) -#![feature(try_trait)] +#![feature(try_trait, stmt_expr_attributes)] #[macro_use] extern crate quick_error; #[macro_use] |