Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 82b410ae authored by kraus's avatar kraus
Browse files

fix name of member variable

parent d4f4c3cb
No related branches found
No related tags found
1 merge request!480Fix compilation after issue 503
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
AmrPartBunch::AmrPartBunch(const PartData *ref) AmrPartBunch::AmrPartBunch(const PartData *ref)
: PartBunchBase<double, 3>(new AmrPartBunch::pbase_t(new AmrLayout_t()), ref) : PartBunchBase<double, 3>(new AmrPartBunch::pbase_t(new AmrLayout_t()), ref)
, amrobj_mp(nullptr) , amrobj_mp(nullptr)
, amrpbase_mp(dynamic_cast<AmrPartBunch::pbase_t*>(pbase.get())) , amrpbase_mp(dynamic_cast<AmrPartBunch::pbase_t*>(pbase_m.get()))
, fieldlayout_m(nullptr) , fieldlayout_m(nullptr)
{ {
amrpbase_mp->initializeAmr(); amrpbase_mp->initializeAmr();
...@@ -34,7 +34,7 @@ AmrPartBunch::AmrPartBunch(const PartData *ref) ...@@ -34,7 +34,7 @@ AmrPartBunch::AmrPartBunch(const PartData *ref)
AmrPartBunch::AmrPartBunch(const PartData *ref, pbase_t* pbase_p) AmrPartBunch::AmrPartBunch(const PartData *ref, pbase_t* pbase_p)
: PartBunchBase<double, 3>(new AmrPartBunch::pbase_t(new AmrLayout_t(&pbase_p->getAmrLayout())), ref) : PartBunchBase<double, 3>(new AmrPartBunch::pbase_t(new AmrLayout_t(&pbase_p->getAmrLayout())), ref)
, amrobj_mp(nullptr) , amrobj_mp(nullptr)
, amrpbase_mp(dynamic_cast<AmrPartBunch::pbase_t*>(pbase.get())) , amrpbase_mp(dynamic_cast<AmrPartBunch::pbase_t*>(pbase_m.get()))
, fieldlayout_m(nullptr) , fieldlayout_m(nullptr)
{ {
amrpbase_mp->initializeAmr(); amrpbase_mp->initializeAmr();
......
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