mirror of
https://github.com/saymrwulf/uhd.git
synced 2026-05-16 21:10:10 +00:00
msg_task: return std::vector<boost::uint8_t> instead of std::vector<uint8_t>
This commit is contained in:
parent
583208af1e
commit
f8fbc2f2bc
1 changed files with 2 additions and 2 deletions
|
|
@ -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>();
|
||||
}
|
||||
|
||||
/*!
|
||||
|
|
|
|||
Loading…
Reference in a new issue