diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2019-02-16 00:28:12 +0100 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2019-02-16 00:28:12 +0100 |
| commit | e5e54ee8f1b7afca614f642ee064a7f00a1f8548 (patch) | |
| tree | 1a7c65d4a68619966e4a133dd165de7a3ec64c6b /macros | |
| parent | 7ce052be372ad5e3671e4f470ac552db075162fb (diff) | |
rebase fix
Diffstat (limited to 'macros')
| -rw-r--r-- | macros/src/codegen.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macros/src/codegen.rs b/macros/src/codegen.rs index 1405c2f..af09ad4 100644 --- a/macros/src/codegen.rs +++ b/macros/src/codegen.rs @@ -364,7 +364,7 @@ fn init(ctxt: &mut Context, app: &App, analysis: &Analysis) -> (proc_macro2::Tok let (late_resources, late_resources_ident, ret) = if app.init.returns_late_resources { // create `LateResources` struct in the root of the crate - let ident = mk_ident(None); + let ident = ctxt.ident_gen.mk_ident(None, false); let fields = app .resources |
