Skip to content

Commit faa0d43

Browse files
committed
Added #[macro_use] to main for various new macros
1 parent 1be8830 commit faa0d43

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

src/main.rs

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22
extern crate nom;
33
extern crate itertools;
44

5+
#[macro_use]
6+
mod persistent_list_map;
7+
#[macro_use]
8+
mod persistent_list;
9+
#[macro_use]
10+
mod protocol;
11+
#[macro_use]
12+
mod symbol;
513
mod clojure_std;
614
mod clojure_string;
715
mod environment;
@@ -12,21 +20,17 @@ mod keyword;
1220
mod lambda;
1321
mod maps;
1422
mod namespace;
15-
mod persistent_list;
16-
mod persistent_list_map;
1723
mod persistent_vector;
18-
#[macro_use]
19-
mod protocol;
2024
mod reader;
2125
mod repl;
2226
mod rust_core;
23-
mod symbol;
2427
mod type_tag;
2528
mod user_action;
2629
mod util;
2730
mod value;
2831

2932
mod protocols;
33+
mod traits;
3034
fn main() {
3135
let cli_args: user_action::Action = user_action::parse_args(std::env::args().collect());
3236

0 commit comments

Comments
 (0)