mirror of
https://github.com/ZLMediaKit/ZLMediaKit.git
synced 2026-06-12 19:24:22 +08:00
修复编译警告
This commit is contained in:
@@ -298,7 +298,7 @@ string RtpExt::dumpString() const {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return std::move(printer);
|
||||
return printer;
|
||||
}
|
||||
|
||||
//https://tools.ietf.org/html/rfc6464
|
||||
|
||||
@@ -174,7 +174,7 @@ string RtcSdpBase::toString() const {
|
||||
for (auto &item : items) {
|
||||
printer << item->getKey() << "=" << item->toString() << "\r\n";
|
||||
}
|
||||
return std::move(printer);
|
||||
return printer;
|
||||
}
|
||||
|
||||
RtpDirection RtcSdpBase::getDirection() const {
|
||||
@@ -307,7 +307,7 @@ string RtcSessionSdp::toString() const {
|
||||
printer << media.toString();
|
||||
}
|
||||
|
||||
return std::move(printer);
|
||||
return printer;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user