Unverified Commit cf21f5aa authored by aribiere's avatar aribiere Committed by GitHub
Browse files

Add semicolon as separator for reading in a matrix (#2462)


Co-authored-by: default avatarAlain RIBIÈRE <alain.ribiere@edf.fr>
parent e1ac0b43
......@@ -21,6 +21,7 @@ namespace dlib
return in.peek() == '\n' ||
in.peek() == ' ' ||
in.peek() == ',' ||
in.peek() == ';' ||
in.peek() == '\t' ||
in.peek() == '\r';
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment