mirror of
https://gitee.com/xia-chu/ZLMediaKit.git
synced 2026-05-12 21:27:48 +08:00
bug fixed
This commit is contained in:
parent
c6a5471a23
commit
e296ebae6e
@ -97,7 +97,7 @@ template <char KEY>
|
|||||||
class SdpString : public SdpItem{
|
class SdpString : public SdpItem{
|
||||||
public:
|
public:
|
||||||
SdpString() = default;
|
SdpString() = default;
|
||||||
SdpString(string val) {value == std::move(val);}
|
SdpString(string val) {value = std::move(val);}
|
||||||
// *=*
|
// *=*
|
||||||
const char* getKey() const override { static string key(1, KEY); return key.data();}
|
const char* getKey() const override { static string key(1, KEY); return key.data();}
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user