Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #680 from ethcore/uint_mem
Browse files Browse the repository at this point in the history
Adding std::mem back (only for asm)
  • Loading branch information
arkpar committed Mar 11, 2016
2 parents 9b28e04 + 179569f commit 5d3ead9
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions util/bigint/src/uint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@
//! The functions here are designed to be fast.
//!


#[cfg(all(asm_available, target_arch="x86_64"))]
use std::mem;
use std::fmt;
use std::cmp;

Expand Down

0 comments on commit 5d3ead9

Please sign in to comment.