From 75f8b06e50b6ad32002c30c92a1df148efd1bb7e Mon Sep 17 00:00:00 2001 From: David Tellenbach Date: Fri, 9 Oct 2020 17:04:25 +0200 Subject: [PATCH] Mention problems when using potentially throwing scalars and OpenMP (cherry picked from commit 9022f5aa8aaf76cbe656050b78b74643fe95e9a5) --- doc/TopicMultithreading.dox | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/TopicMultithreading.dox b/doc/TopicMultithreading.dox index 47c9b261f..a2855745b 100644 --- a/doc/TopicMultithreading.dox +++ b/doc/TopicMultithreading.dox @@ -49,6 +49,7 @@ int main(int argc, char** argv) In the case your application is parallelized with OpenMP, you might want to disable Eigen's own parallization as detailed in the previous section. +\warning Using OpenMP with custom scalar types that might throw exceptions can lead to unexpected behaviour in the event of throwing. */ }