Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2012-07-23 21:36:17 +0400
committerJohn Langford <jl@hunch.net>2012-07-23 21:36:17 +0400
commit0f28f055fa7af4a3659d3a5b0d1081194a73ce8b (patch)
tree303c39db9276e947c7432d5d51869c9270754eab /vowpalwabbit/parse_primitives.h
parent8a90ca28033fcf412910c3f695dc4d057791b03b (diff)
First windows port from Chris Quirk
Diffstat (limited to 'vowpalwabbit/parse_primitives.h')
-rw-r--r--vowpalwabbit/parse_primitives.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/parse_primitives.h b/vowpalwabbit/parse_primitives.h
index de09119d..3dc1edfb 100644
--- a/vowpalwabbit/parse_primitives.h
+++ b/vowpalwabbit/parse_primitives.h
@@ -150,7 +150,7 @@ inline float parseFloat(char * p, char **end)
return s * acc;
}
else
- return strtof(start,end);
+ return strtod(start,end);
}
inline float float_of_substring(substring s)