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.h | |
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.h')
-rw-r--r-- | src/lib/util/hashing.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/util/hashing.h b/src/lib/util/hashing.h index 51a7da7c694..8b58d3afc8b 100644 --- a/src/lib/util/hashing.h +++ b/src/lib/util/hashing.h @@ -20,6 +20,7 @@ #include "sha1.h" +namespace util { //************************************************************************** // TYPE DEFINITIONS //************************************************************************** @@ -217,4 +218,6 @@ protected: }; +} // namespace util + #endif // __HASHING_H__ |