hilbert sort, added a visibility macro with the hidden option

This commit is contained in:
Dmitry Anisimov 2021-02-12 15:07:01 +01:00
parent 0dcff365d0
commit cd37d33a30
1 changed files with 5 additions and 1 deletions

View File

@ -83,8 +83,12 @@ struct Hilbert_cmp_3<K,2,false>
} // namespace internal
#ifdef __clang__
#define CGAL_VISIBILITY_MACRO __attribute__ ((visibility ("hidden")))
#endif
template <class K, class ConcurrencyTag>
class Hilbert_sort_median_3
class CGAL_VISIBILITY_MACRO Hilbert_sort_median_3
{
public:
typedef Hilbert_sort_median_3<K, ConcurrencyTag> Self;