Commit 0b1f0804 by Francisco Giordano

change Math to a library instead of a contract

parent 759f8de8
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment