summaryrefslogtreecommitdiffstats
path: root/src/libs/7zip/win/CPP/Windows/Thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/7zip/win/CPP/Windows/Thread.h')
-rw-r--r--src/libs/7zip/win/CPP/Windows/Thread.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/7zip/win/CPP/Windows/Thread.h b/src/libs/7zip/win/CPP/Windows/Thread.h
index 16a509d47..f9ecaed85 100644
--- a/src/libs/7zip/win/CPP/Windows/Thread.h
+++ b/src/libs/7zip/win/CPP/Windows/Thread.h
@@ -20,7 +20,7 @@ public:
WRes Create(THREAD_FUNC_RET_TYPE (THREAD_FUNC_CALL_TYPE *startAddress)(void *), LPVOID parameter)
{ return Thread_Create(&thread, startAddress, parameter); }
WRes Wait() { return Thread_Wait(&thread); }
-
+
#ifdef _WIN32
operator HANDLE() { return thread; }
void Attach(HANDLE handle) { thread = handle; }