remove stray println

This commit is contained in:
NikVolf 2018-02-21 20:49:14 +03:00
parent 6b6961bcb6
commit c202ec311d
1 changed files with 0 additions and 1 deletions

View File

@ -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<Pages, Error> {
let size_before_grow: Pages = self.current_size();
println!("grow({:?}) = {:?}", additional, size_before_grow);
if additional == Pages(0) {
return Ok(size_before_grow);