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

in inlineDAta and xtractData const Entities now.

[[Imported from SVN: r1769]]
parent 2521ebe1
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ namespace Dune {
static T* realloc (T* oldMem, size_t oldSize , size_t nmemb)
{
assert(oldMem);
T * p = (T *) std::realloc(oldMem,nmemb*sizeof(T));
T * p = (T *) std::realloc(oldMem , nmemb*sizeof(T));
assert(p);
return p;
}
......@@ -752,7 +752,7 @@ namespace Dune {
{
//resize();
//std::cout << "Scatter of el = " << en.global_index () << "\n";
std::pair < ObjectStreamType * , EntityType * > p (&str,&en);
std::pair < ObjectStreamType * , const EntityType * > p (&str,&en);
dataWriter_.apply( p );
}
......@@ -761,7 +761,7 @@ namespace Dune {
{
//std::cout << "Gather of el = " << en.global_index () << "\n";
resize();
std::pair < ObjectStreamType * , EntityType * > p (&str,&en);
std::pair < ObjectStreamType * , const EntityType * > p (&str,&en);
dataReader_.apply( 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