0byt3m1n1
Path:
C:
/
Program Files
/
R
/
R-4.2.2
/
library
/
Rcpp
/
include
/
Rcpp
/
traits
/
[
Home
]
File: enable_if.h
#ifndef RCPP_TRAITS_ENABLE_IF_H #define RCPP_TRAITS_ENABLE_IF_H namespace Rcpp { namespace traits { template <bool B, typename T = void> struct enable_if {}; template <typename T> struct enable_if<true, T> { typedef T type; }; } } #endif