| commit | f3a9afae5015971cc8b3e857c6dadbb9142bd3f8 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Thu Oct 08 23:22:12 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Thu Oct 08 23:22:15 2020 -0700 |
| tree | 3f61b59c9251b48b38af594bb57b0cc5259aff82 | |
| parent | d9e789e8cf5bb0001b547e0c6f533a6febef990b [diff] [blame] |
Omit empty derive attribute Previously an empty #[derive()] would appear distractingly in macro-expanded code.
diff --git a/macro/src/lib.rs b/macro/src/lib.rs index fae874a..291b03c 100644 --- a/macro/src/lib.rs +++ b/macro/src/lib.rs
@@ -9,6 +9,7 @@ extern crate proc_macro; +mod derive; mod expand; mod syntax; mod type_id;