aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorNicholas Corgan <nick.corgan@ettus.com>2014-04-28 07:51:44 -0700
committerNicholas Corgan <nick.corgan@ettus.com>2014-05-07 07:32:18 -0700
commitf8fbc2f2bc03b61cedc7bd20f4b7b59063a74bbf (patch)
treedb735ddebb614f1fef2e24af1a3689ffe322e1df /host/include
parent583208af1e4b5cedc03464e52d5be527bc3b9286 (diff)
downloaduhd-f8fbc2f2bc03b61cedc7bd20f4b7b59063a74bbf.tar.gz
uhd-f8fbc2f2bc03b61cedc7bd20f4b7b59063a74bbf.tar.bz2
uhd-f8fbc2f2bc03b61cedc7bd20f4b7b59063a74bbf.zip
msg_task: return std::vector<boost::uint8_t> instead of std::vector<uint8_t>
Diffstat (limited to 'host/include')
-rw-r--r--host/include/uhd/utils/msg_task.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/include/uhd/utils/msg_task.hpp b/host/include/uhd/utils/msg_task.hpp
index 40ee65cb1..21c47a240 100644
--- a/host/include/uhd/utils/msg_task.hpp
+++ b/host/include/uhd/utils/msg_task.hpp
@@ -1,5 +1,5 @@
//
-// Copyright 2011-2013 Ettus Research LLC
+// Copyright 2011-2014 Ettus Research LLC
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
@@ -48,7 +48,7 @@ namespace uhd{
memcpy(&v.front(), p, n);
return v;
}
- return std::vector<uint8_t>();
+ return std::vector<boost::uint8_t>();
}
/*!