Move the using from properties_Polyhedron.h to property_map.h

This commit is contained in:
Andreas Fabri 2016-04-18 11:24:45 +02:00
parent ca284090b2
commit 0bebd2cbd0
2 changed files with 5 additions and 5 deletions

View File

@ -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>

View File

@ -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