diff options
author | Josh Blum <josh@joshknows.com> | 2011-10-06 05:05:31 -0700 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-10-06 14:40:54 -0400 |
commit | 1a3383b19e089d6a8975b991fefe749cac396109 (patch) | |
tree | aa1ffb48f0c6f1634921c022b3e6c30edfce2745 /gr-uhd/swig | |
parent | 5b1c7b73d0cb2dbbf944c3be670a7f2d74547e0f (diff) |
uhd: suppress harmless swig warnings
Diffstat (limited to 'gr-uhd/swig')
-rw-r--r-- | gr-uhd/swig/uhd_swig.i | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gr-uhd/swig/uhd_swig.i b/gr-uhd/swig/uhd_swig.i index 93bf5bfbe5..f8381ae64b 100644 --- a/gr-uhd/swig/uhd_swig.i +++ b/gr-uhd/swig/uhd_swig.i @@ -26,6 +26,9 @@ #define GR_UHD_API +//suppress 319. No access specifier given for base class name (ignored). +#pragma SWIG nowarn=319 + //////////////////////////////////////////////////////////////////////// // standard includes //////////////////////////////////////////////////////////////////////// @@ -72,8 +75,6 @@ %include <uhd/types/metadata.hpp> -%ignore uhd::device::register_device; //causes compile to choke in MSVC -%include <uhd/device.hpp> %template(device_addr_vector_t) std::vector<uhd::device_addr_t>; %include <uhd/types/sensors.hpp> |