diff options
Diffstat (limited to 'zap/source/any/str/numdig.hh')
-rw-r--r-- | zap/source/any/str/numdig.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zap/source/any/str/numdig.hh b/zap/source/any/str/numdig.hh index 65756b9..ea36f0b 100644 --- a/zap/source/any/str/numdig.hh +++ b/zap/source/any/str/numdig.hh @@ -2,7 +2,7 @@ namespace zap { namespace impl { - template<typename typ> zap_priv_inln inline static auto numdig(typ fmtval,::zap::i8 const bs) noexcept -> ::zap::i8 { + template<typename typ> zap_attr_iln inline static auto numdig(typ fmtval,::zap::i8 const bs) noexcept -> ::zap::i8 { ::zap::i8 len = 0x0u; if (fmtval == typ {0x0}) return 0x1u; for (typ val = fmtval;val > 0x0;val /= static_cast<typ>(bs)) ++len; |