Skip to content

Commit

Permalink
fix: Increase recursion limit to 1024
Browse files Browse the repository at this point in the history
Lets the large `record!` macro in primitives work. 1024 was chosen since
that will be standard in rustc soon
rust-lang/rust#41676
  • Loading branch information
Marwes committed Jul 1, 2017
1 parent af34276 commit 2df5b1a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions vm/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//! Crate which contain the virtual machine which executes gluon programs
#![doc(html_root_url="https://docs.rs/gluon_vm/0.4.2")] // # GLUON
#![recursion_limit = "1024"]

#[macro_use]
extern crate log;
Expand Down

0 comments on commit 2df5b1a

Please sign in to comment.