| 73 | } |
| 74 | |
| 75 | void assert_smaller_failed_impl(const std::string& a, const std::string& b) { |
| 76 | std::cerr << "assertion failed. expected [" << a << "] < [" << b << "]" << std::endl; |
| 77 | std::abort(); |
| 78 | } |
| 79 | |
| 80 | void assert_bigger_equal_failed_impl(const std::string& a, const std::string& b) { |
| 81 | std::cerr << "assertion failed. expected [" << a << "] >= [" << b << "]" << std::endl; |