diff options
| author | Lioncash <mathew1800@gmail.com> | 2015-04-15 00:38:21 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2015-04-15 02:04:03 -0400 |
| commit | b0613bb1c857dd8f0e015217c2c74593132a630b (patch) | |
| tree | e3ed580f1146aa2faed4b4ebbcba6246e657427c /Source/Core/Common/FileUtil.cpp | |
| parent | 7506c386cf316c68a62e4c4b1417c251cc8279d4 (diff) | |
General: Apply the const specifier where applicable
Diffstat (limited to 'Source/Core/Common/FileUtil.cpp')
| -rw-r--r-- | Source/Core/Common/FileUtil.cpp | 2 |
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); |
