diff options
author | Nick Foster <nick@nerdnetworks.org> | 2010-11-12 14:21:07 -0800 |
---|---|---|
committer | Nick Foster <nick@nerdnetworks.org> | 2010-11-12 14:21:07 -0800 |
commit | 6a7ef142fcd3c9036b3c7d915edf16a3ba5dc9df (patch) | |
tree | 7df41f04cd42ac67e8ee07472a5fa06768bf78b8 /host/include | |
parent | e84b198c0b323f6eab7dd8557d13cab312602e84 (diff) | |
download | uhd-6a7ef142fcd3c9036b3c7d915edf16a3ba5dc9df.tar.gz uhd-6a7ef142fcd3c9036b3c7d915edf16a3ba5dc9df.tar.bz2 uhd-6a7ef142fcd3c9036b3c7d915edf16a3ba5dc9df.zip |
while this was legal C++, SWIG hates it
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/ranges.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/include/uhd/types/ranges.hpp b/host/include/uhd/types/ranges.hpp index c10c36ccf..623bdca19 100644 --- a/host/include/uhd/types/ranges.hpp +++ b/host/include/uhd/types/ranges.hpp @@ -55,7 +55,8 @@ namespace uhd{ //! Get the step value for this range. const T step(void) const; - private: UHD_PIMPL_DECL(impl) _impl; + private: + UHD_PIMPL_DECL(impl) _impl; }; /*! |