From: Karl Ljungkvist Date: Thu, 29 Dec 2016 15:39:07 +0000 (+0100) Subject: use conventional way of calling static method to please nvcc X-Git-Tag: v8.5.0-rc1~300^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=25cb5a6215aef97439c94a23fb69817d2f03f3bd;p=dealii.git use conventional way of calling static method to please nvcc --- diff --git a/include/deal.II/base/thread_management.h b/include/deal.II/base/thread_management.h index e975b97289..75952bfe59 100644 --- a/include/deal.II/base/thread_management.h +++ b/include/deal.II/base/thread_management.h @@ -2918,7 +2918,7 @@ namespace Threads task->set_ref_count (2); tbb::task *worker = new (task->allocate_child()) TaskEntryPoint(*this); - task->spawn (*worker); + tbb::task::spawn (*worker); }