Skip to content

Commit dac7fc4

Browse files
reenable demangling on OSX >= 10.8, it was disabled on 10.8 for whatever reason
1 parent 05f8023 commit dac7fc4

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

ChangeLog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
2013-09-13 Romain Francois <romain@r-enthusiasts.com>
22

3-
* src/api.cpp : added "long long" to the capabilities function.
3+
* src/api.cpp : added "long long" to the capabilities function.
4+
* include/Rcpp/platform/compiler.h : demangling is definitely available
5+
on all mac versions using gcc. No point is testing for OSX version.
46

57
2013-09-12 Romain Francois <romain@r-enthusiasts.com>
68

inst/include/Rcpp/platform/compiler.h

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -174,14 +174,7 @@
174174
#endif
175175

176176
#ifdef __GNUC__
177-
#ifdef __APPLE__
178-
#include <Availability.h>
179-
#ifndef __MAC_10_8
180-
#define RCPP_HAS_DEMANGLING
181-
#endif
182-
#else
183-
#define RCPP_HAS_DEMANGLING
184-
#endif
177+
#define RCPP_HAS_DEMANGLING
185178
#endif
186179

187180
#ifdef __GNUC__

0 commit comments

Comments
 (0)