fix compile error on MacOS
This commit is contained in:
parent
cbaefb32da
commit
4f91d59a96
1 changed files with 2 additions and 5 deletions
|
@ -271,11 +271,8 @@ public:
|
|||
else
|
||||
{
|
||||
// data can be read in one step
|
||||
const std::vector<TData>::const_iterator ItMemoryGetPos =
|
||||
vecMemory.begin() + iGetPos;
|
||||
|
||||
std::copy ( ItMemoryGetPos,
|
||||
ItMemoryGetPos + iInSize,
|
||||
std::copy ( vecMemory.begin() + iGetPos,
|
||||
vecMemory.begin() + iGetPos + iInSize,
|
||||
vecData.begin() );
|
||||
|
||||
// set the get position one block further (no wrap around needs
|
||||
|
|
Loading…
Reference in a new issue