mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 06:26:49 +00:00
fix some warnings
This commit is contained in:
parent
b1c48e66c9
commit
59c58aa3cf
72 changed files with 263 additions and 203 deletions
|
|
@ -248,7 +248,7 @@ struct RSXFragmentProgram
|
|||
this->operator=(other);
|
||||
}
|
||||
|
||||
data_storage_helper(data_storage_helper&& other)
|
||||
data_storage_helper(data_storage_helper&& other) noexcept
|
||||
: data_ptr(other.data_ptr)
|
||||
, local_storage(std::move(other.local_storage))
|
||||
{
|
||||
|
|
@ -273,7 +273,7 @@ struct RSXFragmentProgram
|
|||
return *this;
|
||||
}
|
||||
|
||||
data_storage_helper& operator=(data_storage_helper&& other)
|
||||
data_storage_helper& operator=(data_storage_helper&& other) noexcept
|
||||
{
|
||||
if (this == &other) return *this;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue