From c21dad9e83e57570196fe66632f31e135f88406d Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 4 Jan 2017 17:47:37 -0500 Subject: [PATCH] IOFile: Get rid of unnecessary unimplemented copy constructor/assignment operator. IOFile already inherits NonCopyable. --- Source/Core/Common/FileUtil.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Source/Core/Common/FileUtil.h b/Source/Core/Common/FileUtil.h index 1c38bb38d9..763da70404 100644 --- a/Source/Core/Common/FileUtil.h +++ b/Source/Core/Common/FileUtil.h @@ -232,10 +232,6 @@ public: std::FILE* m_file; bool m_good; - -private: - IOFile(IOFile&); - IOFile& operator=(IOFile& other); }; } // namespace