diff --git a/contracts/math/Math.sol b/contracts/math/Math.sol index fa89c371f..3d016c0ac 100644 --- a/contracts/math/Math.sol +++ b/contracts/math/Math.sol @@ -5,7 +5,7 @@ pragma solidity ^0.4.11; * @dev Assorted math operations */ -contract Math { +library Math { function max64(uint64 a, uint64 b) internal constant returns (uint64) { return a >= b ? a : b; }