diff options
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 |