Files
nixpkgs/pkgs/by-name/fo/folly/fix-stdexcept-include.patch

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
616 B
Diff
Raw Normal View History

2025-10-09 14:15:47 +02:00
From dc06cc3162afb148c19cd0931d8fe489d639217a Mon Sep 17 00:00:00 2001
From: Uilian Ries <uilianries@gmail.com>
Date: Tue, 9 Sep 2025 16:48:26 +0200
Subject: [PATCH] Add missing header for std::runtime_error
Signed-off-by: Uilian Ries <uilianries@gmail.com>
---
folly/hash/Checksum.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/folly/hash/Checksum.cpp b/folly/hash/Checksum.cpp
index 1d42d6a6e5f..aeafdb20b1b 100644
--- a/folly/hash/Checksum.cpp
+++ b/folly/hash/Checksum.cpp
@@ -17,6 +17,7 @@
#include <folly/hash/Checksum.h>
#include <algorithm>
+#include <stdexcept>
#include <boost/crc.hpp>