diff options
author | 2016-07-23 12:49:33 -0400 | |
---|---|---|
committer | 2016-07-23 12:49:33 -0400 | |
commit | 4aa0ab1724e8fe19775d6be982ec312604a2a6b3 (patch) | |
tree | 14f54f2739422cb8640c7b51ffd2af8bc7271114 /src/emu/fileio.cpp | |
parent | 4423c242a693c37fbb4edc50f17c02cdf98abd88 (diff) |
Moved src/emu/hash.[cpp|h] into src/lib/util, and namespaced that code (and hashing.[cpp|h]) into util::
Diffstat (limited to 'src/emu/fileio.cpp')
-rw-r--r-- | src/emu/fileio.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/fileio.cpp b/src/emu/fileio.cpp index 1fe26071acb..923ea427b3f 100644 --- a/src/emu/fileio.cpp +++ b/src/emu/fileio.cpp @@ -197,7 +197,7 @@ emu_file::operator util::core_file &() // hash - returns the hash for a file //------------------------------------------------- -hash_collection &emu_file::hashes(const char *types) +util::hash_collection &emu_file::hashes(const char *types) { // determine the hashes we already have std::string already_have = m_hashes.hash_types(); |