Skip to content
Snippets Groups Projects
Commit 8b2f6ef1 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

[box][globalVolVars] Make volVars public

parent 8de735be
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!537Fix/global volvar cache for box
...@@ -96,13 +96,13 @@ public: ...@@ -96,13 +96,13 @@ public:
friend inline ElementVolumeVariables localView(const BoxGlobalVolumeVariables& global) friend inline ElementVolumeVariables localView(const BoxGlobalVolumeVariables& global)
{ return ElementVolumeVariables(global); } { return ElementVolumeVariables(global); }
private:
const VolumeVariables& volVars(const IndexType eIdx, const IndexType scvIdx) const const VolumeVariables& volVars(const IndexType eIdx, const IndexType scvIdx) const
{ return volumeVariables_[eIdx][scvIdx]; } { return volumeVariables_[eIdx][scvIdx]; }
VolumeVariables& volVars(const IndexType eIdx, const IndexType scvIdx) VolumeVariables& volVars(const IndexType eIdx, const IndexType scvIdx)
{ return volumeVariables_[eIdx][scvIdx]; } { return volumeVariables_[eIdx][scvIdx]; }
private:
const Problem& problem_() const const Problem& problem_() const
{ return *problemPtr_; } { return *problemPtr_; }
......
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