diff options
author | Josh Blum <josh@joshknows.com> | 2010-10-19 17:13:56 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-10-19 17:13:56 -0700 |
commit | b405abf883a5b37de1468cde679644927d89abce (patch) | |
tree | 35e216a6880cdfb8b707113fc06adad4b30f1652 /host/include | |
parent | 799d5059bae77a24267cfc33b33c4af1c0de8c5b (diff) | |
download | uhd-b405abf883a5b37de1468cde679644927d89abce.tar.gz uhd-b405abf883a5b37de1468cde679644927d89abce.tar.bz2 uhd-b405abf883a5b37de1468cde679644927d89abce.zip |
uhd: remove some warnings in MSVC and with typo in xcvr2450
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/config.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/host/include/uhd/config.hpp b/host/include/uhd/config.hpp index dacd3a96b..2918c2340 100644 --- a/host/include/uhd/config.hpp +++ b/host/include/uhd/config.hpp @@ -31,11 +31,12 @@ # pragma warning(disable: 4251) // class 'A<T>' needs to have dll-interface to be used by clients of class 'B' //# pragma warning(disable: 4127) // conditional expression is constant //# pragma warning(disable: 4290) // C++ exception specification ignored except to ... -# pragma warning(disable: 4180) // qualifier applied to function type has no meaning; ignored +//# pragma warning(disable: 4180) // qualifier applied to function type has no meaning; ignored # pragma warning(disable: 4275) // non dll-interface class ... used as base for dll-interface class ... //# pragma warning(disable: 4267) // 'var' : conversion from 'size_t' to 'type', possible loss of data //# pragma warning(disable: 4511) // 'class' : copy constructor could not be generated -# pragma warning(disable: 4250) // 'class' : inherits 'method' via dominance +//# pragma warning(disable: 4250) // 'class' : inherits 'method' via dominance +# pragma warning(disable: 4200) // nonstandard extension used : zero-sized array in struct/union #endif // define logical operators |