From afa5e4b395891d82696ab09ee4c232f73b69f995 Mon Sep 17 00:00:00 2001 From: John Doneth Date: Fri, 25 Jan 2019 00:53:15 -0500 Subject: [PATCH] Update mod.rs Fix the missing mod statement that exists in the Unix variant of this file but not this one. --- lib/runtime-core/src/sys/windows/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/runtime-core/src/sys/windows/mod.rs b/lib/runtime-core/src/sys/windows/mod.rs index 34e96493e0c..16ca2d539f6 100644 --- a/lib/runtime-core/src/sys/windows/mod.rs +++ b/lib/runtime-core/src/sys/windows/mod.rs @@ -1 +1,3 @@ +mod memory; + pub use self::memory::{Memory, Protect};