remove optional logflag argument from Error::message() and Error::warning()

This commit is contained in:
Axel Kohlmeyer
2021-05-05 16:02:51 -04:00
parent ed45ef301f
commit 9f4da1128b
62 changed files with 71 additions and 70 deletions

View File

@ -43,8 +43,8 @@ class Error : protected Pointers {
_one(file, line, format, fmt::make_args_checked<Args...>(format, args...));
}
void warning(const std::string &, int, const std::string &, int = 1);
void message(const std::string &, int, const std::string &, int = 1);
void warning(const std::string &, int, const std::string &);
void message(const std::string &, int, const std::string &);
[[ noreturn ]] void done(int = 0); // 1 would be fully backwards compatible
int get_numwarn() const { return numwarn; }