diff options
author | Nicholas Corgan <nick.corgan@ettus.com> | 2015-03-26 09:02:41 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-03-26 09:55:59 -0700 |
commit | a393ec83a7b0a7d285941cf3484c4cc24efe5329 (patch) | |
tree | de146d94179b54877c4979b4d4bf39657532f195 /host/include | |
parent | 138ea183ff4c5784060cb362badb785a22b4df46 (diff) | |
download | uhd-a393ec83a7b0a7d285941cf3484c4cc24efe5329.tar.gz uhd-a393ec83a7b0a7d285941cf3484c4cc24efe5329.tar.bz2 uhd-a393ec83a7b0a7d285941cf3484c4cc24efe5329.zip |
filters: fixed GCC unsigned vs. signed comparison warning
Diffstat (limited to 'host/include')
-rw-r--r-- | host/include/uhd/types/filters.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/types/filters.hpp b/host/include/uhd/types/filters.hpp index 0cb23b294..976ae233d 100644 --- a/host/include/uhd/types/filters.hpp +++ b/host/include/uhd/types/filters.hpp @@ -224,7 +224,7 @@ namespace uhd{ "\ttaps: "<<std::endl; os<<"\t\t"; - for(int i = 0; i < _taps.size(); i++) + for(size_t i = 0; i < _taps.size(); i++) { os<<"(tap "<<i<<": "<<_taps[i]<<")"; if( ((i%10) == 0) && (i != 0)) |