summaryrefslogtreecommitdiffstats
path: root/host/test
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2011-01-11 19:46:45 -0800
committerJosh Blum <josh@joshknows.com>2011-01-11 19:46:45 -0800
commit395bbbbc1118b061262a10d5c847f17a4fd0c6ae (patch)
tree6347a18702529cfd42dcb94c37ce2866b49b93f4 /host/test
parent18defbd9d40a4c11a33025c8684f48fe51f102c5 (diff)
downloaduhd-395bbbbc1118b061262a10d5c847f17a4fd0c6ae.tar.gz
uhd-395bbbbc1118b061262a10d5c847f17a4fd0c6ae.tar.bz2
uhd-395bbbbc1118b061262a10d5c847f17a4fd0c6ae.zip
uhd: replace all the instances of float not pertaining to io types with double, simplifies life
Diffstat (limited to 'host/test')
-rw-r--r--host/test/gain_group_test.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/host/test/gain_group_test.cpp b/host/test/gain_group_test.cpp
index 57560aaa1..53142ef21 100644
--- a/host/test/gain_group_test.cpp
+++ b/host/test/gain_group_test.cpp
@@ -35,17 +35,17 @@ public:
return gain_range_t(0, 90, 1);
}
- float get_value(void){
+ double get_value(void){
return _gain;
}
- void set_value(float gain){
- float step = get_range().step();
+ void set_value(double gain){
+ double step = get_range().step();
_gain = step*rint(gain/step);
}
private:
- float _gain;
+ double _gain;
};
class gain_element2{
@@ -55,17 +55,17 @@ public:
return gain_range_t(-20, 10, 0.1);
}
- float get_value(void){
+ double get_value(void){
return _gain;
}
- void set_value(float gain){
- float step = get_range().step();
+ void set_value(double gain){
+ double step = get_range().step();
_gain = step*rint(gain/step);
}
private:
- float _gain;
+ double _gain;
};
//create static instances of gain elements to be shared by the tests