mirror of https://gitee.com/cxasm/notepad--.git
msvc/mingw: 处理由 MinGW 报告错误的 scintillaeditview.cpp 源文件
文件位置:src\scintillaeditview.cpp 报告错误:未引入 #include<thread> 引发
This commit is contained in:
parent
880ba6c0bb
commit
e4ab5422e5
|
@ -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())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue