Skip to content

Commit

Permalink
Fix for #52
Browse files Browse the repository at this point in the history
  • Loading branch information
bertcarnell committed Dec 17, 2022
1 parent 7c08fad commit 766782b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ Suggests:
rmarkdown
URL: https://github.com/bertcarnell/lhs
BugReports: https://github.com/bertcarnell/lhs/issues
RoxygenNote: 7.1.1
RoxygenNote: 7.2.2
VignetteBuilder: knitr
2 changes: 1 addition & 1 deletion src/init.c
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
extern SEXP create_galois_field(SEXP);
extern SEXP create_oalhs(SEXP, SEXP, SEXP, SEXP);
extern SEXP geneticLHS_cpp(SEXP, SEXP, SEXP, SEXP, SEXP, SEXP, SEXP);
extern SEXP get_library_versions();
extern SEXP get_library_versions(void);
extern SEXP improvedLHS_cpp(SEXP, SEXP, SEXP);
extern SEXP maximinLHS_cpp(SEXP, SEXP, SEXP);
extern SEXP oa_to_lhs(SEXP, SEXP, SEXP, SEXP);
Expand Down
2 changes: 1 addition & 1 deletion src/lhs_r.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ RcppExport SEXP geneticLHS_cpp(SEXP /*int*/ n, SEXP /*int*/ k, SEXP /*int*/ pop,
END_RCPP
}

RcppExport SEXP get_library_versions()
RcppExport SEXP get_library_versions(void)
{
BEGIN_RCPP
Rcpp::CharacterVector rresult = Rcpp::CharacterVector(1);
Expand Down

0 comments on commit 766782b

Please sign in to comment.