mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-14 06:02:40 +00:00
common/fs/file: Explicitly delete copy constructors
Relocates them to the same place the move equivalents are at for consistent viewing.
This commit is contained in:
@@ -117,7 +117,7 @@ template <typename Path>
|
||||
}
|
||||
#endif
|
||||
|
||||
class IOFile final : NonCopyable {
|
||||
class IOFile final {
|
||||
public:
|
||||
IOFile();
|
||||
|
||||
@@ -144,6 +144,9 @@ public:
|
||||
|
||||
~IOFile();
|
||||
|
||||
IOFile(const IOFile&) = delete;
|
||||
IOFile& operator=(const IOFile&) = delete;
|
||||
|
||||
IOFile(IOFile&& other) noexcept;
|
||||
IOFile& operator=(IOFile&& other) noexcept;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user