Skip to content

Commit ad6e2c3

Browse files
committed
BLD: c scope decl wrong
1 parent 7156920 commit ad6e2c3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pandas/src/numpy_helper.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ char_to_string(char* data) {
136136
#include <errno.h>
137137
#include <float.h>
138138

139-
double PANDAS_INLINE xstrtod(const char *p, char **q, char decimal, char sci, int skip_trailing);
139+
PANDAS_INLINE double
140+
xstrtod(const char *p, char **q, char decimal, char sci, int skip_trailing);
140141

141142
int to_double(char *item, double *p_value, char sci, char decimal)
142143
{
@@ -250,7 +251,7 @@ PANDAS_INLINE void uppercase(char *p) {
250251
}
251252

252253

253-
double PANDAS_INLINE xstrtod(const char *str, char **endptr, char decimal,
254+
PANDAS_INLINE double xstrtod(const char *str, char **endptr, char decimal,
254255
char sci, int skip_trailing)
255256
{
256257
double number;

0 commit comments

Comments
 (0)