From 6a275ab64bd6feef236f91f14d39d548627ef7e5 Mon Sep 17 00:00:00 2001 From: Giacomo Dabisias Date: Wed, 23 Sep 2015 16:01:17 +0200 Subject: [PATCH] fixed tinythread include --- examples/protonect/include/libfreenect2/threading.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/protonect/include/libfreenect2/threading.h b/examples/protonect/include/libfreenect2/threading.h index 02b9e4a73..e617d8bb3 100644 --- a/examples/protonect/include/libfreenect2/threading.h +++ b/examples/protonect/include/libfreenect2/threading.h @@ -63,7 +63,7 @@ using namespace std::this_thread; #ifdef LIBFREENECT2_THREADING_TINYTHREAD -#include +#include // TODO: work around for tinythread incompatibility #define WAIT_CONDITION(var, mutex, lock) var.wait(mutex);