diff options
Diffstat (limited to 'volk/include')
-rw-r--r-- | volk/include/volk/volk_common.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/volk/include/volk/volk_common.h b/volk/include/volk/volk_common.h index 12623073c..2c935d1fb 100644 --- a/volk/include/volk/volk_common.h +++ b/volk/include/volk/volk_common.h @@ -33,6 +33,14 @@ #endif //////////////////////////////////////////////////////////////////////// +// Ignore annoying warnings in MSVC +//////////////////////////////////////////////////////////////////////// +#if defined(_MSC_VER) +# pragma warning(disable: 4244) //'conversion' conversion from 'type1' to 'type2', possible loss of data +# pragma warning(disable: 4305) //'identifier' : truncation from 'type1' to 'type2' +#endif + +//////////////////////////////////////////////////////////////////////// // C-linkage declaration macros // FIXME: due to the usage of complex.h, require gcc for c-linkage //////////////////////////////////////////////////////////////////////// |