Skip to content

Commit

Permalink
Introduce some clazy issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Holzhaus committed Nov 15, 2020
1 parent 723dea3 commit e35950a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/engine/sync/enginesync.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ Syncable* EngineSync::pickNonSyncSyncTarget(EngineChannel* pDontPick) const {

bool EngineSync::otherSyncedPlaying(const QString& group) {
bool othersInSync = false;
for (Syncable* theSyncable : qAsConst(m_syncables)) {
for (Syncable* theSyncable : m_syncables) {
bool isSynchonized = theSyncable->isSynchronized();
if (theSyncable->getGroup() == group) {
if (!isSynchonized) {
Expand Down
2 changes: 1 addition & 1 deletion src/track/serato/markers2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ QByteArray SeratoMarkers2::dumpID3() const {
QList<SeratoMarkers2EntryPointer> SeratoMarkers2::findEntriesByType(
SeratoMarkers2Entry::TypeId typeId) const {
QList<SeratoMarkers2EntryPointer> entriesFound;
for (const auto& pEntry : qAsConst(m_entries)) {
for (const auto& pEntry : m_entries) {
VERIFY_OR_DEBUG_ASSERT(pEntry) {
continue;
}
Expand Down

0 comments on commit e35950a

Please sign in to comment.