update wording in the error inside arg_id_handler, use FMT_ASSERT instead of throw

This commit is contained in:
Alexey Ochapov 2021-02-16 08:01:11 +03:00 committed by Victor Zverovich
parent 499047e132
commit 3f69af3aaf

View File

@ -589,7 +589,7 @@ template <typename Char> struct arg_id_handler {
constexpr void on_error(const char* message) { throw format_error(message); }
constexpr int on_arg_id() {
throw format_error("handler cannot be used for empty arg_id");
FMT_ASSERT(false, "handler cannot be used with automatic indexing");
return 0;
}