diff options
-rw-r--r-- | host/include/uhd/property_tree.hpp | 2 | ||||
-rw-r--r-- | host/include/uhd/property_tree.ipp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/property_tree.hpp b/host/include/uhd/property_tree.hpp index bbe3e24e1..b9c6c65aa 100644 --- a/host/include/uhd/property_tree.hpp +++ b/host/include/uhd/property_tree.hpp @@ -72,7 +72,7 @@ public: typedef std::function<T(void)> publisher_type; typedef std::function<T(const T&)> coercer_type; - virtual ~property<T>(void) = 0; + virtual ~property(void) = 0; /*! * Register a coercer into the property. diff --git a/host/include/uhd/property_tree.ipp b/host/include/uhd/property_tree.ipp index d0e127c5d..b1b95c2c8 100644 --- a/host/include/uhd/property_tree.ipp +++ b/host/include/uhd/property_tree.ipp @@ -28,7 +28,7 @@ public: } } - ~property_impl<T>(void) + ~property_impl(void) { /* NOP */ } |