From b8382e9692ce5b3283069cdf0a1de5f33ae685ac Mon Sep 17 00:00:00 2001
From: "A. Maitland Bottoms" <bottoms@debian.org>
Date: Tue, 19 Oct 2021 01:07:08 -0400
Subject: [PATCH] remove spurious template from property destructor

---
 host/include/uhd/property_tree.hpp | 2 +-
 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 11b92393a..c4cefa770 100644
--- a/host/include/uhd/property_tree.hpp
+++ b/host/include/uhd/property_tree.hpp
@@ -73,7 +73,7 @@ public:
     typedef boost::function<T(void)> publisher_type;
     typedef boost::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 ca5d6904f..f4da67b55 100644
--- a/host/include/uhd/property_tree.ipp
+++ b/host/include/uhd/property_tree.ipp
@@ -30,7 +30,7 @@ public:
         }
     }
 
-    ~property_impl<T>(void)
+    ~property_impl(void)
     {
         /* NOP */
     }
-- 
2.30.2

