summaryrefslogtreecommitdiff
path: root/Source/Core/Common/FileUtil.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-11 18:00:22 -0500
committerLioncash <mathew1800@gmail.com>2017-01-12 12:34:06 -0500
commit6f08ef9a2505bf784efdd3ca9419aa2f9bb14c4e (patch)
treeac8781b5a1e5e2ee83f204cdc0624dbd5beda19d /Source/Core/Common/FileUtil.h
parented6e346664c202468aa9954b5ddc72e19fbe5618 (diff)
IOFile: Get rid of IOFile's ReleaseHandle function
Transfer of handles should be done via std::move.
Diffstat (limited to 'Source/Core/Common/FileUtil.h')
-rw-r--r--Source/Core/Common/FileUtil.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/Common/FileUtil.h b/Source/Core/Common/FileUtil.h
index 755dfcd6e8..df4d6aacd6 100644
--- a/Source/Core/Common/FileUtil.h
+++ b/Source/Core/Common/FileUtil.h
@@ -212,8 +212,6 @@ public:
// m_good is set to false when a read, write or other function fails
bool IsGood() const { return m_good; }
explicit operator bool() const { return IsGood() && IsOpen(); }
- std::FILE* ReleaseHandle();
-
std::FILE* GetHandle() { return m_file; }
void SetHandle(std::FILE* file);