Skip to content
Snippets Groups Projects

Removed warning about implicitly declared assingment operator.

Closed Markus Blatt requested to merge markus.blatt/dune-istl:issues-warn-explcit-assing into master
1 file
+ 23
21
Compare changes
  • Side-by-side
  • Inline
+ 23
21
@@ -97,17 +97,19 @@ namespace Imp {
friend class RealIterator<ValueType>;
//! constructor
RealIterator ()
: p(0), i(0)
{}
RealIterator (const B* _p, B* _i) : p(_p), i(_i)
{ }
RealIterator () = default;
RealIterator(const RealIterator<ValueType>& it)
: p(it.p), i(it.i)
: p(it.p), i(it.i)
{}
void operator=(const RealIterator<ValueType>& it)
{
p = it.p; i = it.i;
}
//! return index
size_type index () const
{
@@ -163,8 +165,8 @@ namespace Imp {
i+=d;
}
const B* p;
B* i;
const B* p{};
B* i{};
};
//! iterator type for sequential access
@@ -259,17 +261,15 @@ namespace Imp {
return p;
}
base_array_unmanaged () = default;
protected:
//! makes empty array
base_array_unmanaged ()
: n(0), p(0)
{}
//! make an initialized array
base_array_unmanaged (size_type n_, B* p_)
: n(n_), p(p_)
{}
size_type n; // number of elements in array
B *p; // pointer to dynamically allocated built-in array
size_type n{}; // number of elements in array
B *p{}; // pointer to dynamically allocated built-in array
};
@@ -348,23 +348,25 @@ namespace Imp {
friend class RealIterator<const ValueType>;
friend class RealIterator<ValueType>;
//! constructor
RealIterator ()
: p(0), j(0), i(0)
{}
//! constructor
RealIterator (B* _p, size_type* _j, size_type _i)
: p(_p), j(_j), i(_i)
{ }
RealIterator () = default;
/**
* @brief Copy constructor from mutable iterator
*/
// template<typename V,typename = std::enable_if_t<!std::is_same<V,T>::value,void>>
RealIterator(const RealIterator<ValueType>& it)
: p(it.p), j(it.j), i(it.i)
{}
void operator=(const RealIterator<ValueType>& it)
{
p = it.p; j = it.j; i = it.i;
}
//! equality
bool equals (const RealIterator<ValueType>& it) const
@@ -424,9 +426,9 @@ namespace Imp {
return p[i];
}
B* p;
size_type* j;
size_type i;
B* p{};
size_type* j{};
size_type i{};
};
/** @brief The iterator type. */
Loading