NO-OP: whitespace

This commit is contained in:
Robin Gareus 2023-06-10 02:18:09 +02:00
parent bb54bc0d40
commit 8489810cfb
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 2 additions and 2 deletions

View File

@ -162,7 +162,7 @@ public:
timepos_t _natural_position;
bool _have_natural_position;
bool _analysed;
std::atomic<int> _use_count; /* atomic */
std::atomic<int> _use_count;
uint32_t _level; /* how deeply nested is this source w.r.t a disk file */
std::string _ancestor_name;
std::string _captured_for;

View File

@ -441,7 +441,7 @@ Source::set_allow_remove_if_empty (bool yn)
void
Source::inc_use_count ()
{
_use_count.fetch_add (1);
_use_count.fetch_add (1);
}
void