Move away from using const references of std::vector<unsigned char> for target memory buffers. Replaced with std::span<const unsigned char> (via TargetMemoryBufferSpan alias)
This commit is contained in:
@@ -39,7 +39,7 @@ namespace Targets
|
||||
* @param startAddress
|
||||
* @param data
|
||||
*/
|
||||
void insert(TargetMemoryAddress startAddress, const TargetMemoryBuffer& data);
|
||||
void insert(TargetMemoryAddress startAddress, TargetMemoryBufferSpan data);
|
||||
|
||||
/**
|
||||
* Clears the cache.
|
||||
|
||||
Reference in New Issue
Block a user