| 3961 | |
| 3962 | |
| 3963 | SWIGINTERNINLINE PyObject * |
| 3964 | SWIG_From_size_t (size_t value) |
| 3965 | { |
| 3966 | #ifdef SWIG_LONG_LONG_AVAILABLE |
| 3967 | if (sizeof(size_t) <= sizeof(unsigned long)) { |
| 3968 | #endif |
| 3969 | return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value)); |
| 3970 | #ifdef SWIG_LONG_LONG_AVAILABLE |
| 3971 | } else { |
| 3972 | /* assume sizeof(size_t) <= sizeof(unsigned long long) */ |
| 3973 | return SWIG_From_unsigned_SS_long_SS_long (static_cast< unsigned long long >(value)); |
| 3974 | } |
| 3975 | #endif |
| 3976 | } |
| 3977 | |
| 3978 | |
| 3979 | SWIGINTERN int |
no test coverage detected