In the Rcpp 0.10.0, inst/include/Rcpp/sugar/logical/SingleLogicalResult.h
there is the code:

template <bool x>
class conversion_to_bool_is_forbidden :
conversion_to_bool_is_forbidden<x>{

Which obviously can't be instantiated.

Presumably the code should be:

template <bool x>
class conversion_to_bool_is_forbidden :
forbidden_conversion<x>{

Thanks,

Karl
_______________________________________________
Rcpp-devel mailing list
Rcpp-devel@lists.r-forge.r-project.org
https://lists.r-forge.r-project.org/cgi-bin/mailman/listinfo/rcpp-devel

Reply via email to