assert is now built in

This commit is contained in:
Dave Appleton
2017-06-17 11:10:30 +08:00
parent a49fe53fa1
commit 2020d56ba4

View File

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