Skip to content

Commit 0837acd

Browse files
authored
Fix compilation on DragonFlyBSD (#1338)
1 parent c91eb89 commit 0837acd

File tree

2 files changed

+14
-9
lines changed

2 files changed

+14
-9
lines changed

ChangeLog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-10-26 Gábor Csárdi <[email protected]>
2+
3+
* inst/include/Rcpp/exceptions_impl.h: check for DragonFlyBSD to fix compilation
4+
15
2024-10-07 Iñaki Ucar <[email protected]>
26

37
* inst/include/Rcpp/platform/compiler.h: Uncomment HAS_VARIADIC_TEMPLATES

inst/include/Rcpp/exceptions_impl.h

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,16 @@
2323

2424
// disable demangler on platforms where we have no support
2525
#ifndef RCPP_DEMANGLER_ENABLED
26-
# if defined(_WIN32) || \
27-
defined(__FreeBSD__) || \
28-
defined(__NetBSD__) || \
29-
defined(__OpenBSD__) || \
30-
defined(__CYGWIN__) || \
31-
defined(__sun) || \
32-
defined(_AIX) || \
33-
defined(__MUSL__) || \
34-
defined(__HAIKU__) || \
26+
# if defined(_WIN32) || \
27+
defined(__FreeBSD__) || \
28+
defined(__NetBSD__) || \
29+
defined(__OpenBSD__) || \
30+
defined(__DragonFly__) || \
31+
defined(__CYGWIN__) || \
32+
defined(__sun) || \
33+
defined(_AIX) || \
34+
defined(__MUSL__) || \
35+
defined(__HAIKU__) || \
3536
defined(__ANDROID__)
3637
# define RCPP_DEMANGLER_ENABLED 0
3738
# elif defined(__GNUC__) || defined(__clang__)

0 commit comments

Comments
 (0)