move InlineExecutor, ManualExecutor, and GlobalThreadPoolList to
[folly.git] / folly / Hash.h
index 1151dc4350725acbafdaf880c6d425ee52b2804f..5253975a4a8f70998a88dc604bdf8fae8c1e7058 100644 (file)
@@ -24,8 +24,8 @@
 #include <type_traits>
 #include <utility>
 
-#include <folly/ApplyTuple.h>
 #include <folly/Bits.h>
+#include <folly/functional/ApplyTuple.h>
 #include <folly/hash/SpookyHashV1.h>
 #include <folly/hash/SpookyHashV2.h>
 
@@ -310,7 +310,7 @@ inline uint32_t hsieh_hash32_buf(const void* buf, size_t len) {
   uint32_t tmp;
   size_t rem;
 
-  if (len <= 0 || buf == 0) {
+  if (len <= 0 || buf == nullptr) {
     return 0;
   }