mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #3730 from lioncash/noncopy
NonCopyable: Minor changes
This commit is contained in:
commit
a78787ba75
1 changed files with 2 additions and 3 deletions
|
@ -11,7 +11,6 @@ protected:
|
|||
constexpr NonCopyable() = default;
|
||||
~NonCopyable() = default;
|
||||
|
||||
private:
|
||||
NonCopyable(NonCopyable&) = delete;
|
||||
NonCopyable& operator=(NonCopyable&) = delete;
|
||||
NonCopyable(const NonCopyable&) = delete;
|
||||
NonCopyable& operator=(const NonCopyable&) = delete;
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue