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

Co-authored-by: Alain RIBIÈRE <alain.ribiere@edf.fr>
This commit is contained in:
aribiere 2021-11-19 14:38:03 +01:00 committed by GitHub
parent e1ac0b43e4
commit cf21f5aa95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,6 +21,7 @@ namespace dlib
return in.peek() == '\n' ||
in.peek() == ' ' ||
in.peek() == ',' ||
in.peek() == ';' ||
in.peek() == '\t' ||
in.peek() == '\r';
}