[Dplr-commits] r1056 - pkg/dplR/src
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Feb 16 10:03:19 CET 2017
Author: mvkorpel
Date: 2017-02-16 10:03:18 +0100 (Thu, 16 Feb 2017)
New Revision: 1056
Modified:
pkg/dplR/src/init.c
Log:
const static => static const (avoid compiler warning)
Modified: pkg/dplR/src/init.c
===================================================================
--- pkg/dplR/src/init.c 2017-02-16 08:46:03 UTC (rev 1055)
+++ pkg/dplR/src/init.c 2017-02-16 09:03:18 UTC (rev 1056)
@@ -7,7 +7,7 @@
#define CALLDEF(name, n) {#name, (DL_FUNC) &name, n}
-const static R_CallMethodDef R_CallDef[] = {
+static const R_CallMethodDef R_CallDef[] = {
CALLDEF(exactmean, 1),
CALLDEF(gini, 1),
CALLDEF(makear1, 3),
More information about the Dplr-commits
mailing list