Skip to content
Snippets Groups Projects
Unverified Commit f9b8c1a4 authored by Richard Cordovano's avatar Richard Cordovano Committed by GitHub
Browse files

Merge pull request #2052 from ihsinme/patch-1

date parsing bug fix
parents 2ce9016b 9abe726e
Branches
Tags
No related merge requests found
......@@ -66,7 +66,7 @@ bool arff::is_weka_date(const string &s)
s[10]==' ' &&
isdigit(s[11]) && isdigit(s[12]) && s[13]==':' &&
isdigit(s[14]) && isdigit(s[15]) && s[16]==':' &&
isdigit(s[17]) && isdigit(s[17]) && s.size()==19) return true;
isdigit(s[17]) && isdigit(s[18]) && s.size()==19) return true;
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment