Skip to content

Commit

Permalink
fix: Build macro check error.
Browse files Browse the repository at this point in the history
修复兼容编译宏判断错误

Log: 修复兼容编译宏判断错误
  • Loading branch information
rb-union committed Oct 10, 2023
1 parent c8fa8c9 commit a9015f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ int main(int argc, char *argv[])
DApplicationSettings set(&app);

// 系统日志
#if !(DTK_VERSION >= DTK_VERSION_CHECK(5,6,5,0))
#if (DTK_VERSION >= DTK_VERSION_CHECK(5,6,5,0))
DLogManager::registerJournalAppender();
#ifdef QT_DEBUG
DLogManager::registerConsoleAppender();
Expand Down

0 comments on commit a9015f6

Please sign in to comment.