diff options
| author | oldmud0 <oldmud0@users.noreply.github.com> | 2022-01-08 21:26:06 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-08 21:26:06 -0600 |
| commit | 2748a954f46249c8d135154eb9f31b441a6e242a (patch) | |
| tree | a134cd1a139f87751960da3d1637d2cb19ba60ad | |
| parent | 549ceddfaafa3d827080c7b00f5c3c3c82483cd6 (diff) | |
Fix build failure in GitLab CI (#630)
error: use of deleted function 'std::atomic<bool>::atomic(const std::atomic<bool>&)'
| -rw-r--r-- | include/aolayer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/aolayer.h b/include/aolayer.h index 830dd697..19dce38b 100644 --- a/include/aolayer.h +++ b/include/aolayer.h @@ -148,7 +148,7 @@ private: // used in populate_vectors void load_next_frame(); - std::atomic_bool exit_loop = false; //awful solution but i'm not fucking using QThread + std::atomic_bool exit_loop { false }; //awful solution but i'm not fucking using QThread QFuture<void> frame_loader; QMutex mutex; QWaitCondition frameAdded; |
