diff options
author | 2016-07-23 12:49:33 -0400 | |
---|---|---|
committer | 2016-07-23 12:49:33 -0400 | |
commit | 4aa0ab1724e8fe19775d6be982ec312604a2a6b3 (patch) | |
tree | 14f54f2739422cb8640c7b51ffd2af8bc7271114 /src/lib/util/hashing.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/lib/util/hashing.cpp')
-rw-r--r-- | src/lib/util/hashing.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/util/hashing.cpp b/src/lib/util/hashing.cpp index 240e64af9ad..dd6b9847f15 100644 --- a/src/lib/util/hashing.cpp +++ b/src/lib/util/hashing.cpp @@ -14,6 +14,7 @@ #include <sstream> +namespace util { //************************************************************************** // CONSTANTS //************************************************************************** @@ -291,3 +292,5 @@ void crc16_creator::append(const void *data, UINT32 length) crc = (crc << 8) ^ s_table[(crc >> 8) ^ *src++]; m_accum.m_raw = crc; } + +} // namespace util |