Compile fix for boost 1.83.

Fixes #7849
This commit is contained in:
Pentarctagon 2023-08-17 23:19:21 -05:00
parent 0bf93f42e3
commit 136e651d69

View file

@ -169,7 +169,11 @@ namespace
return msg;
}
#if BOOST_VERSION < 108300
const char* get(int domain_id, const char* ctx, const char* sid, int n) const override
#else
const char* get(int domain_id, const char* ctx, const char* sid, bl::count_type n) const override
#endif
{
auto& base = get_base();
const char* msg = base.get(domain_id, ctx, sid, n);