From 626a53e7dfe463f18b0e685cad0989283dc3748e Mon Sep 17 00:00:00 2001 From: "U-DESKTOP-ONHNTIV\\hieuh" Date: Wed, 5 Aug 2015 18:15:09 +0100 Subject: compile error on 4.9.3 on cygwin --- phrase-extract/consolidate-main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phrase-extract') diff --git a/phrase-extract/consolidate-main.cpp b/phrase-extract/consolidate-main.cpp index c9496f988..0f276144b 100644 --- a/phrase-extract/consolidate-main.cpp +++ b/phrase-extract/consolidate-main.cpp @@ -165,7 +165,7 @@ int main(int argc, char* argv[]) } pos = single_setting.find(":"); UTIL_THROW_IF2(pos == std::string::npos, "faulty MinScore setting '" << single_setting << "' in '" << argv[i] << "'"); - unsigned int field = std::atoll( single_setting.substr(0,pos).c_str() ); + unsigned int field = atoll( single_setting.substr(0,pos).c_str() ); float threshold = std::atof( single_setting.substr(pos+1).c_str() ); if (field == 0) { minScore0 = threshold; -- cgit v1.2.3