Fix build issue in newsblur when compiling with GCC 11.2 (#648)

GCC thinks the assignment is ambiguous
This commit is contained in:
igrekster 2022-02-22 18:26:23 +11:00 committed by GitHub
parent 14f8f3bcce
commit 9e99e7162d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -203,7 +203,7 @@ void NewsBlurNetwork::setBatchSize(int batch_size) {
}
void NewsBlurNetwork::clearCredentials() {
m_authSid = {};
m_authSid = QString{};
m_userId = {};
}