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:
authorU-NORTHAMERICA\jcl <jcl@JCL.northamerica.corp.microsoft.com>2012-08-14 02:04:53 +0400
committerU-NORTHAMERICA\jcl <jcl@JCL.northamerica.corp.microsoft.com>2012-08-14 02:04:53 +0400
commit72d80f3c986be95264554b2e0e2740849fbb3a4b (patch)
treeb77d61865f0f8456d6a651af06fd7b3eb518ede3 /vowpalwabbit/parse_primitives.h
parentf653707338ececef16e9d3d04e02b642c3ce7e4e (diff)
pthread isolation for windows
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 2a8476d5..c4a55aa2 100644
--- a/vowpalwabbit/parse_primitives.h
+++ b/vowpalwabbit/parse_primitives.h
@@ -142,7 +142,7 @@ inline float parseFloat(char * p, char **end)
}
if (*p == ' ')//easy case succeeded.
{
- acc *= pow(10,exp_acc-num_dec);
+ acc *= powf(10,exp_acc-num_dec);
*end = p;
return s * acc;
}