summaryrefslogtreecommitdiff
path: root/Source/Core/Common/FileUtil.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2015-04-16 23:13:39 -0400
committerLioncash <mathew1800@gmail.com>2015-04-16 23:13:39 -0400
commit9eb608c9daff0abd5670a0c89375226ac89d75c9 (patch)
tree8a8310c6e21bc019992091437e0be0cf7b8250ec /Source/Core/Common/FileUtil.cpp
parentcd0212ab1c1180183c20643301d6d850515f9523 (diff)
parentb0613bb1c857dd8f0e015217c2c74593132a630b (diff)
Merge pull request #2301 from lioncash/const
General: Apply the const specifier where applicable
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
-rw-r--r--Source/Core/Common/FileUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/FileUtil.cpp b/Source/Core/Common/FileUtil.cpp
index 6779e62937..bb4ab0ca76 100644
--- a/Source/Core/Common/FileUtil.cpp
+++ b/Source/Core/Common/FileUtil.cpp
@@ -949,7 +949,7 @@ bool IOFile::Seek(s64 off, int origin)
return m_good;
}
-u64 IOFile::Tell()
+u64 IOFile::Tell() const
{
if (IsOpen())
return ftello(m_file);