summaryrefslogtreecommitdiff
path: root/third-party
diff options
context:
space:
mode:
authorBrad Smith <brad@comstyle.com>2025-06-27 16:56:17 -0400
committerGitHub <noreply@github.com>2025-06-27 16:56:17 -0400
commit68239b76f139e44d24f3949383e3fd4bf389e1c9 (patch)
tree753dbdfb2e0e5ca237242212824906b49f244518 /third-party
parent29b1054835106ed6c1dee59bebc8e6f6af2198d0 (diff)
[gtest] Fix building on OpenBSD/sparc64 (#145225)
Cherry pick a patch from 1.15.0 Add missing include for raise(3) https://github.com/google/googletest/commit/7f036c5563af7d0329f20e8bb42effb04629f0c0
Diffstat (limited to 'third-party')
-rw-r--r--third-party/unittest/googletest/src/gtest.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/third-party/unittest/googletest/src/gtest.cc b/third-party/unittest/googletest/src/gtest.cc
index 30a5cc3f83a7..37d380a78983 100644
--- a/third-party/unittest/googletest/src/gtest.cc
+++ b/third-party/unittest/googletest/src/gtest.cc
@@ -43,6 +43,7 @@
#include <algorithm>
#include <chrono> // NOLINT
#include <cmath>
+#include <csignal>
#include <cstdint>
#include <cstdlib>
#include <cstring>