aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorMartin Braun <martin.braun@ettus.com>2017-12-05 16:19:23 -0800
committerMartin Braun <martin.braun@ettus.com>2017-12-22 15:05:58 -0800
commita568e1d58c05fcacc40398d658b2cefdf72403f9 (patch)
tree0ea0fa7c91dfa5a449bc86f0345f847bfe623563 /host/include
parent7df29f6ee62d44eaeed878700ddbaeeb1d7fda46 (diff)
downloaduhd-a568e1d58c05fcacc40398d658b2cefdf72403f9.tar.gz
uhd-a568e1d58c05fcacc40398d658b2cefdf72403f9.tar.bz2
uhd-a568e1d58c05fcacc40398d658b2cefdf72403f9.zip
types: Change eeprom_map_to to uint8_t vectors
mpmd_impl was already using this type, fixed conversion from std::string to std::vector<uint8_t> there too. Reviewed-By: Brent Stapleton <brent.stapleton@ettus.com>
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/types/eeprom.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/types/eeprom.hpp b/host/include/uhd/types/eeprom.hpp
index 814d429c8..19729f396 100644
--- a/host/include/uhd/types/eeprom.hpp
+++ b/host/include/uhd/types/eeprom.hpp
@@ -9,11 +9,11 @@
#include <map>
#include <string>
+#include <vector>
namespace uhd {
- typedef std::map<std::string, std::string> eeprom_map_t;
-
+ typedef std::map<std::string, std::vector<uint8_t>> eeprom_map_t;
} /* namespace uhd */