Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix warning on function without return
Not sure if this can be really reached, though.
  • Loading branch information
pvuorela committed Mar 30, 2021
1 parent a566ffb commit 27c8fb0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libbuteosyncfw/profile/TargetResults.cpp
Expand Up @@ -316,7 +316,9 @@ QList<QString> TargetResults::localDetails(Buteo::TargetResults::ItemOperation a
return ItemDetails::filterStatus(d_ptr->iLocalDeletions, aStatus);
case ITEM_MODIFIED:
return ItemDetails::filterStatus(d_ptr->iLocalModifications, aStatus);
};
}

return QList<QString>();
}

QString TargetResults::localMessage(const QString &aUid) const
Expand Down

0 comments on commit 27c8fb0

Please sign in to comment.