(wangle) s/continuation_/callback/ (missed some)
[folly.git] / folly / Checksum.cpp
index 56e211d68cd11ac48ed4265ba4e1b77d8973f66e..3882a6e8c13f28951aaa7b728ecc3c30410ace59 100644 (file)
  * limitations under the License.
  */
 
-#include "folly/Checksum.h"
+#include <folly/Checksum.h>
 #include <algorithm>
 #include <stdexcept>
 #include <boost/crc.hpp>
-#include "folly/CpuId.h"
+#include <folly/CpuId.h>
 
 namespace folly {
 
 namespace detail {
 
-#if defined(__x86_64__) && defined(__GNUC__) && defined(__GNUC_MINOR__) && \
-    (((__GNUC__ * 100) + __GNUC_MINOR__) >= 408)
+#if FOLLY_X64 && defined(__GNUC__) && defined(__GNUC_MINOR__) && \
+    (((__GNUC__ * 100) + __GNUC_MINOR__) >= 407)
 
 // Fast SIMD implementation of CRC-32C for x86 with SSE 4.2
 uint32_t crc32c_hw(const uint8_t *data, size_t nbytes,