diff options
Diffstat (limited to 'zap/source/any/str/fmtlen.cc')
-rw-r--r-- | zap/source/any/str/fmtlen.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zap/source/any/str/fmtlen.cc b/zap/source/any/str/fmtlen.cc index 866d011..b5e508c 100644 --- a/zap/source/any/str/fmtlen.cc +++ b/zap/source/any/str/fmtlen.cc @@ -4,14 +4,14 @@ If a copy of the MPL was not distributed with this file, You can obtain one at <https://mozilla.org/MPL/2.0>. */ -#include <zap/math.h> -#include <zap/str.h> +#include <zap/math.hh> +#include <zap/str.hh> #include "numdig.hh" namespace zap { namespace impl { - template<typename typ> zap_priv_inln inline static auto fmtlen(typ val,::zap::i8 const bs) noexcept -> ::zap::i8 { + template<typename typ> zap_attr_iln inline static auto fmtlen(typ val,::zap::i8 const bs) noexcept -> ::zap::i8 { ::zap::i8 len = 0x0u; if (val < 0x0) { val = static_cast<typ>(::zap::abs(val)); |