mirror of https://github.com/CGAL/cgal
- Fix last change.
This commit is contained in:
parent
302df00c2b
commit
7efa173f71
|
|
@ -1185,13 +1185,13 @@ public:
|
|||
|
||||
typedef OutIt iterator_type;
|
||||
|
||||
Transform_output_iterator(OutIt *o, const & F f = F()) : _o(o), _f(f) {}
|
||||
Transform_output_iterator(OutIt *o, const F & f = F()) : _o(o), _f(f) {}
|
||||
|
||||
template <typename T>
|
||||
Transform_output_iterator&
|
||||
operator=(const T& t)
|
||||
{
|
||||
*(*o)++ = _f(t);
|
||||
*(*_o)++ = _f(t);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@ CXXFLAGS = \
|
|||
$(EXTRA_FLAGS) \
|
||||
$(CGAL_CXXFLAGS) \
|
||||
$(LONG_NAME_PROBLEM_CXXFLAGS) \
|
||||
$(DEBUG_OPT) -U_GLIBCXX_DEBUG
|
||||
$(DEBUG_OPT)
|
||||
|
||||
#---------------------------------------------------------------------#
|
||||
# linker flags
|
||||
|
|
|
|||
Loading…
Reference in New Issue