clang-format

Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
This commit is contained in:
Trial97
2024-06-25 11:13:15 +03:00
committed by Rachel Powers
parent cf319649f9
commit 474effe7c7
6 changed files with 74 additions and 52 deletions

View File

@ -403,8 +403,8 @@ void Component::updateCachedData()
}
}
void Component::waitLoadMeta() {
void Component::waitLoadMeta()
{
if (!m_loaded) {
if (!m_metaVersion || !m_metaVersion->isLoaded()) {
// wait for the loaded version from meta
@ -415,7 +415,8 @@ void Component::waitLoadMeta() {
}
}
QDebug operator<<(QDebug d, const Component& comp) {
QDebug operator<<(QDebug d, const Component& comp)
{
d << "Component(" << comp.m_uid << " : " << comp.m_cachedVersion << ")";
return d;
}