Skip to content

Commit 195bba1

Browse files
less SFINAE noise on solaris
1 parent 3c4ef8e commit 195bba1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

inst/include/Rcpp/platform/solaris.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
namespace Rcpp{
99
namespace traits{
1010

11-
1211
template <typename T> struct is_convertible< std::vector<T>, SEXP> : public false_type{} ;
12+
template <typename T> struct is_convertible< std::deque<T>, SEXP> : public false_type{} ;
13+
template <typename T> struct is_convertible< std::map<T>, SEXP> : public false_type{} ;
14+
1315
template <> struct is_convertible<Range,SEXP> : public false_type{} ;
1416

1517
#if !defined(RCPP_NO_SUGAR)

0 commit comments

Comments
 (0)