mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
Fix mac warning for std::move on temporary object
This commit is contained in:
parent
8792824960
commit
b960b66542
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
|||
#include "ModelFormatRegistry.h"
|
||||
|
||||
void ModelFormatRegistry::addFormat(const hfm::Serializer& serializer) {
|
||||
_hfmFormatRegistry.registerMediaType(serializer.getMediaType(), std::move(serializer.getFactory()));
|
||||
_hfmFormatRegistry.registerMediaType(serializer.getMediaType(), serializer.getFactory());
|
||||
}
|
||||
|
||||
std::shared_ptr<hfm::Serializer> ModelFormatRegistry::getSerializerForMediaType(const hifi::ByteArray& data, const hifi::URL& url, const std::string& webMediaType) const {
|
||||
|
|
Loading…
Reference in a new issue