Skip to content
Snippets Groups Projects
Commit b52eba77 authored by Christian Engwer's avatar Christian Engwer
Browse files

Ups... I forgot something

[[Imported from SVN: r761]]
parent c5ebdbc5
No related branches found
No related tags found
No related merge requests found
......@@ -165,6 +165,10 @@ namespace Dune
return false;
}
T * raw()
{
return p;
}
protected:
int n; // Anzahl Elemente; n=0 heisst, dass kein array allokiert ist!
T *p; // Zeiger auf built-in array
......@@ -374,13 +378,13 @@ namespace Dune
}
template<class T>
inline T& Array<T>::Iterator::operator* () const
inline const T& Array<T>::Iterator::operator* () const
{
return *p;
}
template<class T>
inline T* Array<T>::Iterator::operator-> () const
inline const T* Array<T>::Iterator::operator-> () const
{
return p;
}
......
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