1
0
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:
Leland Lucius 2020-07-29 10:49:17 -05:00
parent 2d63633972
commit 6f947b39c7
2 changed files with 2 additions and 3 deletions

View File

@ -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([&]
{

View File

@ -17,7 +17,6 @@
#include "ProjectSerializer.h"
#include <algorithm>
#include <atomic>
#include <cstdint>
#include <mutex>
#include <wx/ustring.h>