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 c3b9408a28522e7d991fe32272e3836ea3ba5b29
parent 697c53c460fea982b6d344dee978ee94893b2237
Author: [email protected] <[email protected]>
Date:   Fri, 31 Mar 2017 23:02:56 +0300

Visual Studio: suppress warnings in cstring.hpp

Diffstat:
Minclude/kfr/cometa/cstring.hpp | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/include/kfr/cometa/cstring.hpp b/include/kfr/cometa/cstring.hpp @@ -7,6 +7,9 @@ #include <string> #include <utility> +CMT_PRAGMA_MSVC(warning(push)) +CMT_PRAGMA_MSVC(warning(disable : 4100)) + namespace cometa { @@ -158,3 +161,5 @@ CMT_INTRIN cstring<N1 - Nfrom + Nto> str_replace(const cstring<N1>& str, const c cvalseq_t<size_t, N1 - Nfrom + Nto - 1>()); } } + +CMT_PRAGMA_MSVC(warning(pop))