From f1a3f06d5e49798e2aa28150e863af1c7910bfc2 Mon Sep 17 00:00:00 2001 From: Nikolay Volf Date: Wed, 21 Feb 2018 23:00:31 +0300 Subject: [PATCH] remove stray println (#66) --- src/memory.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/memory.rs b/src/memory.rs index 1071e55..1f269f1 100644 --- a/src/memory.rs +++ b/src/memory.rs @@ -216,7 +216,6 @@ impl MemoryInstance { /// Returns `Err` if attempted to allocate more memory than permited by the limit. pub fn grow(&self, additional: Pages) -> Result { let size_before_grow: Pages = self.current_size(); - println!("grow({:?}) = {:?}", additional, size_before_grow); if additional == Pages(0) { return Ok(size_before_grow);