Skip to content
Snippets Groups Projects
Commit e95b025e authored by Robert Klöfkorn's avatar Robert Klöfkorn
Browse files

minor cahnges.

[[Imported from SVN: r1289]]
parent 54b29230
No related branches found
No related tags found
No related merge requests found
......@@ -521,13 +521,6 @@ namespace Dune
return (*this);
}
template <class DofType,class DofArrayType>
inline const DofIteratorAdapt<DofType,DofArrayType>& DofIteratorAdapt<DofType,DofArrayType>::operator ++() const
{
count_++;
return (*this);
}
template <class DofType,class DofArrayType>
inline DofType& DofIteratorAdapt<DofType,DofArrayType>::operator [](int i)
{
......@@ -563,7 +556,7 @@ namespace Dune
}
template <class DofType,class DofArrayType>
inline void DofIteratorAdapt<DofType,DofArrayType>::reset() const
inline void DofIteratorAdapt<DofType,DofArrayType>::reset()
{
count_ = 0;
}
......
......@@ -556,13 +556,6 @@ namespace Dune
return (*this);
}
template <class DofType>
inline const DofIteratorArray<DofType>& DofIteratorArray<DofType>::operator ++() const
{
count_++;
return (*this);
}
template <class DofType>
inline DofType& DofIteratorArray<DofType>::operator [](int i)
{
......@@ -598,7 +591,7 @@ namespace Dune
}
template <class DofType>
inline void DofIteratorArray<DofType>::reset() const
inline void DofIteratorArray<DofType>::reset()
{
count_ = 0;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment