do not write 'static' in the macro so that we can use the macro also for a definition

This commit is contained in:
Andreas Fabri
2015-09-14 10:17:22 +02:00
parent 4ba71bce35
commit 0d70d7b1ce
4 changed files with 19 additions and 30 deletions
@@ -64,9 +64,9 @@ private:
CGAL_EXPORT static const double CST_CUT;
CGAL_EXPORT CGAL_THREAD_LOCAL_DECLARE_POD2(int, prime_int);
CGAL_EXPORT CGAL_THREAD_LOCAL_DECLARE_POD2(double, prime);
CGAL_EXPORT CGAL_THREAD_LOCAL_DECLARE_POD2(double, prime_inv);
CGAL_EXPORT static CGAL_THREAD_LOCAL_DECLARE_POD2(int, prime_int);
CGAL_EXPORT static CGAL_THREAD_LOCAL_DECLARE_POD2(double, prime);
CGAL_EXPORT static CGAL_THREAD_LOCAL_DECLARE_POD2(double, prime_inv);
#if (! defined(CGAL_USE_BOOST_THREAD)) || (! defined(CGAL_HAS_THREADS))