mirror of https://github.com/CGAL/cgal
Move the using from properties_Polyhedron.h to property_map.h
This commit is contained in:
parent
ca284090b2
commit
0bebd2cbd0
|
|
@ -173,11 +173,6 @@ get(PropertyTag p, CGAL::Polyhedron_3<Gt,I,HDS,A> const& g, const Key& key)
|
|||
{ return get(get(p, g), key); }
|
||||
|
||||
|
||||
|
||||
// Add this as VC did find the "generalized put" below
|
||||
// when a bare pointer is used in jet_estimate_normals
|
||||
using ::put;
|
||||
using ::get;
|
||||
|
||||
// generalized put
|
||||
template<class Gt, class I, CGAL_HDS_PARAM_, class A, class PropertyTag, class Key,class Value>
|
||||
|
|
|
|||
|
|
@ -36,6 +36,11 @@
|
|||
|
||||
namespace CGAL {
|
||||
|
||||
// VC++ does not consider put and get for plain pointers
|
||||
// when identifying the best match for overloads
|
||||
|
||||
using ::put;
|
||||
using ::get;
|
||||
|
||||
/// \cond SKIP_DOXYGEN
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue