From c707f949295a85881f56bf312b6b8c165f8e7b4a Mon Sep 17 00:00:00 2001 From: Michael Ploujnikov Date: Wed, 6 Jan 2010 07:42:42 -0500 Subject: [PATCH] update c++ wrapper to match the C API --- src/backend/thread-wrapper.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/backend/thread-wrapper.hpp b/src/backend/thread-wrapper.hpp index 3f897b582..7259e4fbc 100644 --- a/src/backend/thread-wrapper.hpp +++ b/src/backend/thread-wrapper.hpp @@ -177,10 +177,11 @@ namespace backend { lumiera_thread_run ( kind , &run // invoking the run helper and.. , this // passing this start context as parameter - , joinCond // maybe wait-blocking for the thread to terminate , purpose.c() , logging_flag ); + (void)joinCond; // TODO: this is a temporary fix to match the C API + // we might have to re-write more of this file or even remove it later if (!res) throw lumiera::error::State("failed to create new thread.");