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 f1d3972 commit 8ee4061Copy full SHA for 8ee4061
ChangeLog
@@ -1,5 +1,7 @@
1
2022-11-04 Dirk Eddelbuettel <edd@debian.org>
2
3
+ * src/init.c: Add 'void' for proper prototype pleasing clang-15
4
+
5
* R/fastLm.R (summary.fastLm,print.fastLm): Refer to correct and full
6
variable name df.residual in the returned object
7
src/init.c
@@ -3,12 +3,12 @@
#include <stdlib.h> // for NULL
#include <R_ext/Rdynload.h>
-/* FIXME:
+/* FIXME:
Check these declarations against the C/Fortran source code.
8
*/
9
10
/* .Call calls */
11
-extern SEXP RcppEigen_Eigen_SSE();
+extern SEXP RcppEigen_Eigen_SSE(void);
12
extern SEXP RcppEigen_eigen_version(SEXP);
13
extern SEXP RcppEigen_fastLm_Impl(SEXP, SEXP, SEXP);
14
0 commit comments