Commit f90eaa17 authored by Stephen Chen's avatar Stephen Chen Committed by Facebook Github Bot

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
parent 04458d15
......@@ -29,6 +29,8 @@
* other code cleanup
*/
#include <stdexcept>
#include <folly/detail/ChecksumDetail.h>
#include <folly/CppAttributes.h>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment