C4D. Fix merge conflicts

pull/4342/head
Kim Kulling 2022-01-18 22:21:58 +01:00 committed by GitHub
parent ea5996307a
commit c3b91dd766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -117,13 +117,15 @@ C4DImporter::~C4DImporter() {
}
// ------------------------------------------------------------------------------------------------
bool C4DImporter::CanRead( const std::string& /*pFile*/, IOSystem* /*pIOHandler*/, bool /*checkSig*/) const {
const std::string& extension = GetExtension(pFile);
bool C4DImporter::CanRead( const std::string& pFile, IOSystem* /*pIOHandler*/, bool /*checkSig*/) const {
const std::string& extension = GetExtension(pFile);
if (extension == "c4d") {
return true;
} else if ((!extension.length() || checkSig) && pIOHandler) {
// TODO
}
return false;
}
// ------------------------------------------------------------------------------------------------