Skip to content

Commit

Permalink
CRAN ready
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstiDE committed Nov 28, 2024
1 parent d20e135 commit 60ab812
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: RStoolbox
Type: Package
Title: Remote Sensing Data Analysis
Version: 1.0.1
Date: 2024-08-26
Date: 2024-11-28
Authors@R: c(
person("Benjamin", "Leutner", role= "aut", email="[email protected]", comment = c(ORCID = "0000-0002-6893-2002")),
person("Ned", "Horning", role ="aut", email="[email protected]"),
Expand Down
2 changes: 1 addition & 1 deletion man/spectralIndices.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/tinyexpr.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ For log = natural log uncomment the next line. */
#include <stdio.h>
#include <ctype.h>
#include <limits.h>
#include <R.h>

#ifndef NAN
#define NAN (0.0/0.0)
Expand Down
5 changes: 1 addition & 4 deletions src/tinyexpr.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,7 @@ extern "C" {
typedef struct te_expr {
int type;
union {double value; const double *bound; const void *function;};
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wpedantic"
void *parameters[];
#pragma GCC diagnostic pop
} te_expr;


Expand Down Expand Up @@ -84,4 +81,4 @@ void te_free(te_expr *n);
}
#endif

#endif /*TINYEXPR_H*/
#endif /*TINYEXPR_H*/

0 comments on commit 60ab812

Please sign in to comment.