CodeMod: Replace includes of folly/Hash.h with folly/hash/Hash.h
authorYedidya Feldblum <yfeldblum@fb.com>
Sun, 29 Oct 2017 20:55:29 +0000 (13:55 -0700)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Sun, 29 Oct 2017 21:05:27 +0000 (14:05 -0700)
Summary: CodeMod: Replace includes of `folly/Hash.h` with `folly/hash/Hash.h`.

Reviewed By: luciang

Differential Revision: D6156195

fbshipit-source-id: 0941b3c9cf1d17d7cc62595111e506c06ee51236

17 files changed:
folly/AtomicHashArray.h
folly/AtomicHashMap.h
folly/FBString.h
folly/FixedString.h
folly/IPAddressV4.h
folly/IPAddressV6.h
folly/Singleton.h
folly/SocketAddress.cpp
folly/Uri-inl.h
folly/concurrency/CacheLocality.h
folly/detail/Futex.cpp
folly/detail/MemoryIdler.h
folly/dynamic.cpp
folly/experimental/FunctionScheduler.h
folly/experimental/StringKeyedUnorderedMap.h
folly/experimental/StringKeyedUnorderedSet.h
folly/experimental/symbolizer/ElfCache.h

index 16b8dad0c97dd0b48fe5110ea7b3c7dd78b5a5f0..654077b1945759d30a9aa08711c2027cf3d7df90 100644 (file)
@@ -37,9 +37,9 @@
 #include <boost/iterator/iterator_facade.hpp>
 #include <boost/noncopyable.hpp>
 
-#include <folly/Hash.h>
 #include <folly/ThreadCachedInt.h>
 #include <folly/Utility.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 
index 280b0dd97e77b582cde3ceac30d3eace56a578fc..2243b6bef7415e07355987e0ecd383c9cc7c6ade 100644 (file)
 #include <stdexcept>
 
 #include <folly/AtomicHashArray.h>
-#include <folly/Hash.h>
 #include <folly/Likely.h>
 #include <folly/ThreadCachedInt.h>
 #include <folly/container/Foreach.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 
index 9c9f670bf0290093bf2e289314208d52ccec5868..4882aac577650dc0689c91baa9269e5bf4438390 100644 (file)
@@ -54,8 +54,8 @@
 #include <string>
 #include <utility>
 
-#include <folly/Hash.h>
 #include <folly/Traits.h>
+#include <folly/hash/Hash.h>
 #include <folly/memory/Malloc.h>
 #include <folly/portability/BitsFunctexcept.h>
 
index cec00226f0b7bf9038b78e8de88f181d6219654e..ece7691b74d09b43a7e0b413394cce2b939410eb 100644 (file)
@@ -409,7 +409,7 @@ struct ReverseIterator {
 } // namespace fixedstring
 } // namespace detail
 
-// Defined in folly/Hash.h
+// Defined in folly/hash/Hash.h
 std::uint32_t hsieh_hash32_buf(const void* buf, std::size_t len);
 
 /** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** ** *
index 96de8adda6add3a61ab4b09a3e2c3274caf9addb..76534add349fb99025f33f8d18d0865d0e37b038 100644 (file)
@@ -23,9 +23,9 @@
 #include <iosfwd>
 
 #include <folly/FBString.h>
-#include <folly/Hash.h>
 #include <folly/Range.h>
 #include <folly/detail/IPAddress.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 
index f641bdcd85e988fa8562a0f986cb0aa467597f2a..78ec4c76f13098e064769f48942d1114a875f6b2 100644 (file)
 #include <stdexcept>
 
 #include <folly/FBString.h>
-#include <folly/Hash.h>
 #include <folly/Optional.h>
 #include <folly/Range.h>
 #include <folly/detail/IPAddress.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 
index 40e9dad6b4aa54049577bfb1f3862ce7ee1710c4..01a9d5d12448a4c097664e3d4c7243f47eda87b6 100644 (file)
 #include <folly/Demangle.h>
 #include <folly/Exception.h>
 #include <folly/Executor.h>
-#include <folly/Hash.h>
 #include <folly/Memory.h>
 #include <folly/RWSpinLock.h>
 #include <folly/Synchronized.h>
 #include <folly/detail/StaticSingletonManager.h>
 #include <folly/experimental/ReadMostlySharedPtr.h>
+#include <folly/hash/Hash.h>
 
 #include <algorithm>
 #include <atomic>
index 6cb5a7a06b330a55f81df6c9231433057b63e223..af6cd77f927ceb70a63cef20d8a6c515c1bf7db7 100644 (file)
@@ -32,7 +32,7 @@
 #include <folly/CppAttributes.h>
 #include <folly/Exception.h>
 #include <folly/Format.h>
-#include <folly/Hash.h>
+#include <folly/hash/Hash.h>
 
 namespace {
 
index 6445eef36b4af5672152a95220e0f725821358c4..50d57c2ed53f2fccc01154d498749c885bc3d0a9 100644 (file)
@@ -22,7 +22,7 @@
 #include <tuple>
 
 #include <folly/Conv.h>
-#include <folly/Hash.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 
index 457e107accc30adf1d00d09f9d394897b54ea6f5..caae2395ab5e9c79065db06c9e3b7193aff3500a 100644 (file)
 #include <unordered_map>
 #include <vector>
 
-#include <folly/Hash.h>
 #include <folly/Indestructible.h>
 #include <folly/Likely.h>
 #include <folly/Memory.h>
 #include <folly/Portability.h>
+#include <folly/hash/Hash.h>
 #include <folly/portability/BitsFunctexcept.h>
 #include <folly/portability/Memory.h>
 #include <folly/system/ThreadId.h>
index 8604a745d4085ab0a5f32498ca2046436cb75654..da7a04dce18d88d1f8971934e10233a708b2c68f 100644 (file)
@@ -16,8 +16,8 @@
 
 #include <folly/detail/Futex.h>
 #include <boost/intrusive/list.hpp>
-#include <folly/Hash.h>
 #include <folly/ScopeGuard.h>
+#include <folly/hash/Hash.h>
 #include <folly/portability/SysSyscall.h>
 #include <stdint.h>
 #include <string.h>
index 1a8fe3ae1355b19c906b1b93470bbf325c5afe85..1cabfecc558eea838d8873769b7378df3cb9f2b0 100644 (file)
@@ -20,9 +20,9 @@
 #include <chrono>
 
 #include <folly/AtomicStruct.h>
-#include <folly/Hash.h>
 #include <folly/Traits.h>
 #include <folly/detail/Futex.h>
+#include <folly/hash/Hash.h>
 #include <folly/system/ThreadId.h>
 
 namespace folly {
index f2be8f27324177208ed03f3fb16274ef69a8e10f..8c25017d3e4d85c7a740710fb185161e4b5963d5 100644 (file)
@@ -17,7 +17,7 @@
 #include <folly/dynamic.h>
 
 #include <folly/Format.h>
-#include <folly/Hash.h>
+#include <folly/hash/Hash.h>
 #include <folly/lang/Assume.h>
 #include <folly/portability/BitsFunctexcept.h>
 
index 59dc4bce1e7ec34b9af6f7924781f9f4455350f1..35d3e3087f96e82c3c50c0e1ad60590e20db3f3f 100644 (file)
 
 #include <folly/Function.h>
 #include <folly/Range.h>
-#include <folly/Hash.h>
+#include <folly/hash/Hash.h>
 #include <chrono>
 #include <condition_variable>
 #include <mutex>
 #include <thread>
-#include <vector>
 #include <unordered_map>
+#include <vector>
 
 namespace folly {
 
index 41180cb771c9ce3ac0ba49235db78d5686a59310..4cf33b434fa3f292255282020703bbe2d0cd27d7 100644 (file)
@@ -24,9 +24,9 @@
 #include <unordered_map>
 #include <utility>
 
-#include <folly/Hash.h>
 #include <folly/Range.h>
 #include <folly/experimental/StringKeyedCommon.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 
index 11317ede72cbb6519e8d78bbeec5dffacd41b84a..269d2e6d23905913b1c9f420720a40d06af18e1c 100644 (file)
@@ -24,9 +24,9 @@
 #include <unordered_set>
 #include <utility>
 
-#include <folly/Hash.h>
 #include <folly/Range.h>
 #include <folly/experimental/StringKeyedCommon.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 
index b9d7d966b6a034703ed535de1e85b5661ed86122..57a36cf7439053c6fbfb781958623999a6b5ba82 100644 (file)
@@ -29,9 +29,9 @@
 #include <boost/operators.hpp>
 #include <glog/logging.h>
 
-#include <folly/Hash.h>
 #include <folly/Range.h>
 #include <folly/experimental/symbolizer/Elf.h>
+#include <folly/hash/Hash.h>
 
 namespace folly {
 namespace symbolizer {