More vs2019 minor warnings cleanup (#675)
This commit is contained in:
parent
d1f0b136e3
commit
b0f27a465e
|
@ -140,7 +140,7 @@ private:
|
||||||
next_ = nostd::shared_ptr<DataList>{nullptr};
|
next_ = nostd::shared_ptr<DataList>{nullptr};
|
||||||
}
|
}
|
||||||
|
|
||||||
DataList &operator=(DataList &&other)
|
DataList &operator=(DataList &&other) noexcept
|
||||||
{
|
{
|
||||||
key_length_ = other.key_length_;
|
key_length_ = other.key_length_;
|
||||||
value_ = std::move(other.value_);
|
value_ = std::move(other.value_);
|
||||||
|
|
|
@ -58,6 +58,8 @@ public:
|
||||||
*/
|
*/
|
||||||
virtual bool Detach(Token &token) noexcept = 0;
|
virtual bool Detach(Token &token) noexcept = 0;
|
||||||
|
|
||||||
|
virtual ~RuntimeContextStorage(){};
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
nostd::unique_ptr<Token> CreateToken(const Context &context) noexcept
|
nostd::unique_ptr<Token> CreateToken(const Context &context) noexcept
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue