summaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-05-20 17:08:53 -0700
committerJosh Blum <josh@joshknows.com>2010-05-20 17:08:53 -0700
commit221909b36b2a08a5817e75a3d13ebfe56716c7da (patch)
treef80bbe1860e26a98ba449f4ea8b53c246d1e6605 /host/include
parentaf1231fddbb8bb24ef7cdd2612e4933f73f83a9f (diff)
downloaduhd-221909b36b2a08a5817e75a3d13ebfe56716c7da.tar.gz
uhd-221909b36b2a08a5817e75a3d13ebfe56716c7da.tar.bz2
uhd-221909b36b2a08a5817e75a3d13ebfe56716c7da.zip
use only procfs /proc/partitions for discovering raw devices on linux
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/types/dict.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/types/dict.hpp b/host/include/uhd/types/dict.hpp
index b5fb11120..50a2b5c3b 100644
--- a/host/include/uhd/types/dict.hpp
+++ b/host/include/uhd/types/dict.hpp
@@ -46,7 +46,7 @@ namespace uhd{
* \param first the begin iterator
* \param last the end iterator
*/
- template <class InputIterator>
+ template <typename InputIterator>
dict(InputIterator first, InputIterator last){
for(InputIterator it = first; it != last; it++){
_map.push_back(*it);