edwindj / ffbase

Basic (statistical) functionality for R package ff
github.com/edwindj/ffbase/wiki
35 stars 15 forks source link

Replaces Sint types with int types #63

Closed skysyzygy closed 1 year ago

skysyzygy commented 1 year ago

According to the R 4.3.0 release notes

The deprecated legacy typedefs of Sint and Sfloat in header ‘R.h’ are no longer defined, and that header no longer includes header ‘limits.h’ from C nor ‘climits’ from C++.

Sint was defined in R.h simply as:

typedef int Sint

So I just replaced all references to Sint with int!

arnobotha commented 1 year ago

Working myside, thanks!

library(devtools) install_github("edwindj/ffbase", subdir="pkg") # master branch, though giving errors as of 2023-06-20 install_github("skysyzygy/ffbase", subdir="pkg")