aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-06-25 20:22:05 -0700
committerJosh Blum <josh@joshknows.com>2011-06-25 20:22:23 -0700
commitbff29cbbde74d4c5ab77ae717ee04c9533fc7cab (patch)
tree7fa7fa982213ac3fab95dbcaa7b1fb98dc8af069 /host
parent81c15feaafca2b788b89e55669f1c3ad370a89d2 (diff)
downloaduhd-bff29cbbde74d4c5ab77ae717ee04c9533fc7cab.tar.gz
uhd-bff29cbbde74d4c5ab77ae717ee04c9533fc7cab.tar.bz2
uhd-bff29cbbde74d4c5ab77ae717ee04c9533fc7cab.zip
uhd: change for default prop create()
Diffstat (limited to 'host')
-rw-r--r--host/tests/property_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/tests/property_test.cpp b/host/tests/property_test.cpp
index 0cea20c8c..b579e5213 100644
--- a/host/tests/property_test.cpp
+++ b/host/tests/property_test.cpp
@@ -80,7 +80,7 @@ BOOST_AUTO_TEST_CASE(test_prop_tree){
uhd::property_tree::sptr tree = uhd::property_tree::make();
tree->create("/test/prop0", uhd::property<int>());
- tree->create("/test/prop1", uhd::property<int>());
+ tree->create<int>("/test/prop1");
BOOST_CHECK(tree->exists("/test"));
BOOST_CHECK(tree->exists("/test/prop0"));