1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-10-18 23:23:56 +00:00

Merge pull request #243 from TomHarte/Detection

Adds a test that file extension also be typeable.
This commit is contained in:
Thomas Harte 2017-09-16 19:11:53 -04:00 committed by GitHub
commit e3e9baeaa4

View File

@ -64,6 +64,9 @@ static void InspectCatalogue(
for(auto c : file.name) { for(auto c : file.name) {
if(c < 32) return true; if(c < 32) return true;
} }
for(auto c : file.type) {
if(c < 32) return true;
}
return false; return false;
}), }),
candidate_files.end()); candidate_files.end());