msvc/mingw: 处理由 MinGW 报告错误的 scintillaeditview.cpp 源文件

文件位置:src\scintillaeditview.cpp
报告错误:未引入 #include<thread> 引发
This commit is contained in:
zinface 2024-03-19 16:57:08 +08:00
parent 880ba6c0bb
commit e4ab5422e5
1 changed files with 2 additions and 1 deletions

View File

@ -71,6 +71,7 @@
#include <stdexcept>
#include <mutex>
#include <thread>
@ -4314,7 +4315,7 @@ void ScintillaEditView::deleteTailFileThread()
qlonglong threadAddr = this->property(Tail_Thread).toLongLong();
std::thread* pListenThread = (std::thread*)(threadAddr);
std::thread* pListenThread = (std::thread*)(threadAddr);
if (pListenThread->joinable())
{