- fix build with PVQA library 1.5.601

This commit is contained in:
Dmytro Bogovych 2019-04-12 21:59:41 +03:00
parent 8dd79d650b
commit e3489350bd
1 changed files with 4 additions and 1 deletions

View File

@ -195,7 +195,9 @@ bool SevanaPVQA::initializeLibraryWithData(const void* license_buffer, size_t li
const void* config_buffer, size_t config_len)
{
mPvqaLoaded = false;
#if defined(OLD_PVQA)
return false;
#else
ICELogInfo(<< "Sevana PVQA is about to be initialized via byte buffers.");
// Initialize PVQA library
@ -222,6 +224,7 @@ bool SevanaPVQA::initializeLibraryWithData(const void* license_buffer, size_t li
mPvqaLoaded = true;
}
return true;
#endif
}
bool SevanaPVQA::isInitialized()