mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-21 11:39:51 -06:00
Merge pull request #1146 from OpenSpace/feature/sgct
Merging the changes to make the new SGCT version the default one
This commit is contained in:
@@ -79,11 +79,11 @@ void SyncBuffer::decode(std::string& s) {
|
||||
s = decode();
|
||||
}
|
||||
|
||||
void SyncBuffer::setData(std::vector<char> data) {
|
||||
void SyncBuffer::setData(std::vector<std::byte> data) {
|
||||
_dataStream = std::move(data);
|
||||
}
|
||||
|
||||
std::vector<char> SyncBuffer::data() {
|
||||
std::vector<std::byte> SyncBuffer::data() {
|
||||
_dataStream.resize(_encodeOffset);
|
||||
|
||||
return _dataStream;
|
||||
|
||||
Reference in New Issue
Block a user