summaryrefslogtreecommitdiff
path: root/src/Tangential_complex
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-02-26 09:32:49 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-02-26 09:32:49 +0100
commit571cf3f3087f84a251e3029ffe357cc4434528d1 (patch)
tree940695d728ffdda271ee952f867a51f2ff7834a2 /src/Tangential_complex
parentcbb350d81a8c4acadf31b604aaebde209f462e55 (diff)
parent63e4222e528317b7e0385bf5881393ff2f97fa80 (diff)
Merge branch 'master' into iterator_over_simplex_tree
Diffstat (limited to 'src/Tangential_complex')
-rw-r--r--src/Tangential_complex/include/gudhi/Tangential_complex.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Tangential_complex/include/gudhi/Tangential_complex.h b/src/Tangential_complex/include/gudhi/Tangential_complex.h
index f058fa9f..f007bdd5 100644
--- a/src/Tangential_complex/include/gudhi/Tangential_complex.h
+++ b/src/Tangential_complex/include/gudhi/Tangential_complex.h
@@ -60,7 +60,7 @@
#ifdef GUDHI_USE_TBB
#include <tbb/parallel_for.h>
#include <tbb/combinable.h>
-#include <tbb/mutex.h>
+#include <mutex>
#endif
// #define GUDHI_TC_EXPORT_NORMALS // Only for 3D surfaces (k=2, d=3)
@@ -147,7 +147,7 @@ class Tangential_complex {
typedef typename Tr_traits::Vector_d Tr_vector;
#if defined(GUDHI_USE_TBB)
- typedef tbb::mutex Mutex_for_perturb;
+ typedef std::mutex Mutex_for_perturb;
typedef Vector Translation_for_perturb;
typedef std::vector<Atomic_wrapper<FT> > Weights;
#else