diff options
author | 2016-11-12 09:11:35 +0100 | |
---|---|---|
committer | 2016-11-12 09:12:35 +0100 | |
commit | e71e37e54f3df6bcd77aaaec5aac18db082b81a2 (patch) | |
tree | 900a332ce2e57f975bb749da834da28122dfa9fd /src/lib/util/corefile.cpp | |
parent | 2131d9ad3a36ce2f8ddd536ac3267c79307a41d4 (diff) |
Revert "using of IS_ENABLED in files used in tiny build (nw)"
This reverts commit 1efccdd38d4bac6ec44e13f0a6cdf877e3a1c7cb.
Diffstat (limited to 'src/lib/util/corefile.cpp')
-rw-r--r-- | src/lib/util/corefile.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/corefile.cpp b/src/lib/util/corefile.cpp index 6272ea120ad..264d80f4113 100644 --- a/src/lib/util/corefile.cpp +++ b/src/lib/util/corefile.cpp @@ -663,7 +663,7 @@ bool core_in_memory_file::eof() const { // check for buffered chars if (has_putback()) - return false; + return 0; // if the offset == length, we're at EOF return (m_offset >= m_length); |