diff options
author | Bryan Richter <b@chreekat.net> | 2022-06-17 11:51:38 +0300 |
---|---|---|
committer | Bryan Richter <b@chreekat.net> | 2022-06-17 11:51:38 +0300 |
commit | 4ce5e8e3e136958d04e9d86ee934d44b8644c6c4 (patch) | |
tree | ad3f16caa1ef5ac3dde1f88f521e5dd9e8c0bf67 | |
parent | 9c575f24d41fed616e6f96fcbb4fa9a9687497a6 (diff) | |
download | haskell-wip/T11829-on-centos7.tar.gz |
Use <stdexcept> instead of <exception>wip/T11829-on-centos7
Differences in stdlib caused this to fail on Centos7:
https://gitlab.haskell.org/ghc/ghc/-/jobs/1084734
-rw-r--r-- | testsuite/tests/rts/T11829_c.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/tests/rts/T11829_c.cpp b/testsuite/tests/rts/T11829_c.cpp index 959851ad74..f80b179857 100644 --- a/testsuite/tests/rts/T11829_c.cpp +++ b/testsuite/tests/rts/T11829_c.cpp @@ -1,5 +1,5 @@ #include <iostream> -#include <exception> +#include <stdexcept> extern "C" { int func() { |