From ed806826d4dbae3161d6dcbf72db6ed32c629872 Mon Sep 17 00:00:00 2001 From: Denis Kolodin Date: Tue, 15 Sep 2015 11:33:52 +0300 Subject: [PATCH] Bugfix with std::mem (modern Rust) --- src/stack/stack_protected.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/stack/stack_protected.rs b/src/stack/stack_protected.rs index 5090530..95564a7 100644 --- a/src/stack/stack_protected.rs +++ b/src/stack/stack_protected.rs @@ -32,6 +32,7 @@ use std::ptr; use std::fmt; +use std::mem; use libc;