mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 08:09:32 +02:00
Actually tried it on Linux this time...go figure!!!
This commit is contained in:
parent
2d63633972
commit
6f947b39c7
@ -10,7 +10,7 @@ Paul Licameli split from AudacityProject.cpp
|
||||
|
||||
#include "ProjectFileIO.h"
|
||||
|
||||
|
||||
#include <atomic>
|
||||
#include <sqlite3.h>
|
||||
#include <wx/crt.h>
|
||||
#include <wx/frame.h>
|
||||
@ -1891,7 +1891,7 @@ bool ProjectFileIO::SaveProject(const FilePath &fileName, const std::shared_ptr<
|
||||
// should be moved to DBConnection::Open(), wrapping the SafeMode() call
|
||||
// there.
|
||||
{
|
||||
std::atomic_bool done = false;
|
||||
std::atomic_bool done = {false};
|
||||
bool success = false;
|
||||
auto thread = std::thread([&]
|
||||
{
|
||||
|
@ -17,7 +17,6 @@
|
||||
#include "ProjectSerializer.h"
|
||||
|
||||
#include <algorithm>
|
||||
#include <atomic>
|
||||
#include <cstdint>
|
||||
#include <mutex>
|
||||
#include <wx/ustring.h>
|
||||
|
Loading…
x
Reference in New Issue
Block a user