Skip to content

Commit

Permalink
vector function pb, incompatible with system vector definition (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarck authored Dec 9, 2021
1 parent d165d8f commit 4aebec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libtools/NR_nrutil.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ void nrerror(const char error_text[])



float *vector(int nl,int nh)
float *fvector(int nl,int nh)
{
float *v;

Expand Down
2 changes: 1 addition & 1 deletion src/libtools/NR_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#define _UTIL_H

void nrerror(const char error_text[]);
float *vector(int nl,int nh);
float *fvector(int nl,int nh);
int *ivector(int nl,int nh);
double *dvector(int nl,int nh);
float **matrix(int nrl,int nrh,int ncl,int nch);
Expand Down

0 comments on commit 4aebec9

Please sign in to comment.