kfr

Fast, modern C++ DSP framework, FFT, Sample Rate Conversion, FIR/IIR/Biquad Filters (SSE, AVX, AVX-512, ARM NEON)
Log | Files | Refs | README

commit 90bd5e0bdc190e7b93ca72480fa14dd906c92ce7
parent 3546ebb5069b1ba04aeb3a820cbd290dfeb617ba
Author: [email protected] <[email protected]>
Date:   Mon, 25 Jul 2016 14:01:57 +0300

Old stdlibc++ support

Diffstat:
Minclude/kfr/cometa/string.hpp | 6+++---
Mtests/testo/testo.hpp | 2+-
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/kfr/cometa/string.hpp b/include/kfr/cometa/string.hpp @@ -122,7 +122,7 @@ cstring<N1 - Nfrom + Nto> str_replace(const cstring<N1>& str, const cstring<Nfro namespace details { -template <typename T, char t = -1, int width = -1, int prec = -1> +template <typename T, char t = static_cast<char>(-1), int width = -1, int prec = -1> struct fmt_t { const T& value; @@ -199,7 +199,7 @@ CID_INLINE constexpr auto value_fmt(ctype_t<ctype_t<T>>) } template <typename T, int width, int prec> -CID_INLINE constexpr auto value_fmt(ctype_t<fmt_t<T, -1, width, prec>> fmt) +CID_INLINE constexpr auto value_fmt(ctype_t<fmt_t<T, static_cast<char>(-1), width, prec>> fmt) { return concat_cstring(value_fmt_arg(fmt), value_fmt(ctype<repr_type<T>>)); } @@ -305,7 +305,7 @@ CID_INLINE details::fmt_t<T, t, width, prec> fmt(const T& value) } template <int width = -1, int prec = -1, typename T> -CID_INLINE details::fmt_t<T, -1, width, prec> fmtwidth(const T& value) +CID_INLINE details::fmt_t<T, static_cast<char>(-1), width, prec> fmtwidth(const T& value) { return { value }; } diff --git a/tests/testo/testo.hpp b/tests/testo/testo.hpp @@ -177,7 +177,7 @@ struct cmp_eq template <typename L, typename R> bool operator()(L&& left, R&& right) { - equality_comparer<std::decay_t<L>, std::decay_t<R>> eq; + equality_comparer<decay<L>, decay<R>> eq; return eq(left, right); } };