We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 195bba1 commit 321ced0Copy full SHA for 321ced0
inst/include/Rcpp/platform/solaris.h
@@ -10,7 +10,9 @@ namespace traits{
10
11
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
+ template <typename KEY, typename VALUE>
15
+ struct is_convertible< std::map<KEY,VALUE>, SEXP> : public false_type{} ;
16
17
template <> struct is_convertible<Range,SEXP> : public false_type{} ;
18
0 commit comments