| 1436 | |
| 1437 | template <module_error_level_t l> |
| 1438 | void CFamiTrackerDocIO::AssertFileData(bool Cond, const std::string &Msg) const { |
| 1439 | if (l <= err_lv_ && !Cond) { |
| 1440 | CModuleException e = file_.GetException(); |
| 1441 | e.AppendError(Msg); |
| 1442 | throw e; |
| 1443 | } |
| 1444 | } |
| 1445 | |
| 1446 | template<module_error_level_t l, typename T, typename U, typename V> |
| 1447 | T CFamiTrackerDocIO::AssertRange(T Value, U Min, V Max, const std::string &Desc) const { |
nothing calls this directly
no test coverage detected