waveview: now that _quit is protected by a mutex, it doesn't need to be atomic

No reason to have two memory fences when we only need one
This commit is contained in:
Paul Davis
2021-05-11 07:56:47 -06:00
parent 952416c596
commit 1a9df476c2
2 changed files with 5 additions and 4 deletions

View File

@@ -335,7 +335,7 @@ private:
// TODO use std::unique_ptr when possible
typedef std::vector<boost::shared_ptr<WaveViewDrawingThread> > WaveViewThreadList;
GATOMIC_QUAL gint _quit;
bool _quit;
WaveViewThreadList _threads;