Merge pull request #263 from DaveAppleton/master

assert is now built in
This commit is contained in:
Manuel Aráoz
2017-06-17 16:36:56 -03:00
committed by GitHub

View File

@ -45,9 +45,4 @@ library SafeMath {
return a < b ? a : b;
}
function assert(bool assertion) internal {
if (!assertion) {
throw;
}
}
}