Fixed a horrible error in the C++ support header file that was preventing byte-channels from working
This commit is contained in:
parent
3c101bae19
commit
053f91bc59
|
@ -370,7 +370,7 @@ public:
|
|||
inline void operator=(const tockSendableArrayOfBytes& _src)
|
||||
{
|
||||
//We use the receiver's byte count:
|
||||
memcpy(dp,sp,n);
|
||||
memcpy(dp,_src.sp,n);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user