mirror of https://github.com/CGAL/cgal
Mark variables declared at global scope in headers as 'inline'.
This commit is contained in:
parent
9601e96724
commit
b6af36028d
|
|
@ -510,13 +510,13 @@ struct Boost_parameter_compatibility_wrapper<Tag, true, false>
|
|||
}
|
||||
|
||||
#define CGAL_add_named_parameter_with_compatibility(X, Y, Z) \
|
||||
const Boost_parameter_compatibility_wrapper<internal_np::X> Z;
|
||||
inline const Boost_parameter_compatibility_wrapper<internal_np::X> Z;
|
||||
#define CGAL_add_named_parameter_with_compatibility_cref_only(X, Y, Z) \
|
||||
const Boost_parameter_compatibility_wrapper<internal_np::X, true, true> Z;
|
||||
inline const Boost_parameter_compatibility_wrapper<internal_np::X, true, true> Z;
|
||||
#define CGAL_add_named_parameter_with_compatibility_ref_only(X, Y, Z) \
|
||||
const Boost_parameter_compatibility_wrapper<internal_np::X, true, false> Z;
|
||||
inline const Boost_parameter_compatibility_wrapper<internal_np::X, true, false> Z;
|
||||
#define CGAL_add_extra_named_parameter_with_compatibility(X, Y, Z) \
|
||||
const Boost_parameter_compatibility_wrapper<internal_np::X> Z;
|
||||
inline const Boost_parameter_compatibility_wrapper<internal_np::X> Z;
|
||||
#include <CGAL/STL_Extension/internal/parameters_interface.h>
|
||||
#undef CGAL_add_named_parameter
|
||||
#undef CGAL_add_extra_named_parameter_with_compatibility
|
||||
|
|
|
|||
Loading…
Reference in New Issue