NO-OP: use Tab to indent

This commit is contained in:
Nil Geisweiller 2023-04-11 11:12:36 +03:00 committed by Robin Gareus
parent 55dc3113f3
commit 57a5f96a98
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 4 additions and 4 deletions

View File

@ -603,14 +603,14 @@ uint32_t
SessionPlaylists::region_use_count (std::shared_ptr<Region> region) const
{
Glib::Threads::Mutex::Lock lm (lock);
uint32_t cnt = 0;
uint32_t cnt = 0;
for (PlaylistSet::const_iterator i = playlists.begin(); i != playlists.end(); ++i) {
cnt += (*i)->region_use_count (region);
}
for (PlaylistSet::const_iterator i = unused_playlists.begin(); i != unused_playlists.end(); ++i) {
cnt += (*i)->region_use_count (region);
cnt += (*i)->region_use_count (region);
}
return cnt;

View File

@ -70,8 +70,8 @@ namespace PBD {
/* See notes in ../debug.cc on why these are defined here */
LIBPBD_API extern DebugBits WavesMIDI;
LIBPBD_API extern DebugBits WavesAudio;
LIBPBD_API extern DebugBits WavesMIDI;
LIBPBD_API extern DebugBits WavesAudio;
}
}