summaryrefslogtreecommitdiff
path: root/zen/stream_buffer.h
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-05-10 11:21:56 -0400
committerB. Stack <bgstack15@gmail.com>2024-05-10 11:21:56 -0400
commit7a5f22cfe87f938ef58f92b48ac379dc1c4c81c7 (patch)
tree3ed84995318afbd82d5d98a2ba044f9ba58b57c6 /zen/stream_buffer.h
parentadd upstream 13.5 (diff)
downloadFreeFileSync-7a5f22cfe87f938ef58f92b48ac379dc1c4c81c7.tar.gz
FreeFileSync-7a5f22cfe87f938ef58f92b48ac379dc1c4c81c7.tar.bz2
FreeFileSync-7a5f22cfe87f938ef58f92b48ac379dc1c4c81c7.zip
add upstream 13.613.6
Diffstat (limited to 'zen/stream_buffer.h')
-rw-r--r--zen/stream_buffer.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/zen/stream_buffer.h b/zen/stream_buffer.h
index 64cb76ca..5d2ec024 100644
--- a/zen/stream_buffer.h
+++ b/zen/stream_buffer.h
@@ -7,10 +7,11 @@
#ifndef STREAM_BUFFER_H_08492572089560298
#define STREAM_BUFFER_H_08492572089560298
-#include <condition_variable>
+#include <thread>
+//#include <condition_variable>
#include "ring_buffer.h"
#include "string_tools.h"
-#include "thread.h"
+//#include "thread.h"
namespace zen
bgstack15