build: disable control-flow architecture protection

fix: building since last commit
This commit is contained in:
jeefo 2023-04-13 03:23:59 +03:00
commit 77c39812f8
No known key found for this signature in database
GPG key ID: 927BCA0779BEA8ED
4 changed files with 17 additions and 15 deletions

View file

@ -489,7 +489,7 @@ template <typename ...Args> bool BotGraph::raiseLoadingError (bool isGraph, MemF
auto result = strings.format (fmt, cr::forward <Args> (args)...);
// display error only for graph file
if (isGraph || cv_debug.bool_ ()) {
if (isGraph) {
logger.error (result);
}