From: Stephen Chen Date: Fri, 21 Jul 2017 21:24:04 +0000 (-0700) Subject: crc32c: add missing header for std::runtime_error X-Git-Tag: v2017.07.24.00~5 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f90eaa1764a7dda6a1d5246d9d1c5594aaeacac0;p=folly.git crc32c: add missing header for std::runtime_error Summary: On the non sse42 path, we throw std::runtime_error, but Crc32cDetail.cpp is missing the header for it so it fails to compile on aarch64. Reviewed By: yfeldblum Differential Revision: D5468906 fbshipit-source-id: 2d5408621cb2b6758d3501407ed3d2a40d79f1b0 --- diff --git a/folly/detail/Crc32cDetail.cpp b/folly/detail/Crc32cDetail.cpp index af8fb2b2..42e5cae7 100644 --- a/folly/detail/Crc32cDetail.cpp +++ b/folly/detail/Crc32cDetail.cpp @@ -29,6 +29,8 @@ * other code cleanup */ +#include + #include #include