275-fix-random-sigsegv #302
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: M-Labs/nac3#302
Loading…
Reference in New Issue
No description provided.
Delete Branch "275-fix-random-sigsegv"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR is a workaround for the #275
Variable holder "_data" is required in the line let data = PASSESINITLOCK.lock(); even it is not used.
@ -2,2 +2,4 @@
#![allow(dead_code)]
#[macro_use]
extern crate lazy_static;
Can't you just do
use lazy_static
incodegen/mod.rs
?IIRC recent Rust can treat macros like other imports.