mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 19:15:46 +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:
parent
1f79d51913
commit
c0e0c9f71f
1 changed files with 4 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue