Skip to content
Snippets Groups Projects
Commit 499fb0d5 authored by Markus Blatt's avatar Markus Blatt
Browse files

Introduces size_type to be compliant with stl containers.

[[Imported from SVN: r3363]]
parent 9f190635
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,11 @@ namespace Dune
public:
/**
* @brief The size type.
*/
typedef typename A::size_type size_type;
/**
* @brief The type we store.
*/
......@@ -674,7 +679,9 @@ namespace Dune
{
assert(current);
#ifndef NDEBUG
bool changeTail = (current == tail_);
#endif
// Save old next element
Element* tmp = current->next_;
......
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