Skip to content
Snippets Groups Projects
Commit e9aa54dd authored by Markus Frank's avatar Markus Frank
Browse files

Fix compile error

parent ad348c9f
No related branches found
No related tags found
No related merge requests found
...@@ -33,8 +33,8 @@ CartesianGridXY::CartesianGridXY(const Segmentation& e) : Handle<Object>() ...@@ -33,8 +33,8 @@ CartesianGridXY::CartesianGridXY(const Segmentation& e) : Handle<Object>()
} }
/// determine the position based on the cell ID /// determine the position based on the cell ID
Position CartesianGridXY::position(const CellID& cellID) const { Position CartesianGridXY::position(const CellID& id) const {
return Position(access()->position(cellID)); return Position(access()->position(id));
} }
/// determine the cell ID based on the position /// determine the cell ID based on the position
...@@ -84,6 +84,6 @@ const string& CartesianGridXY::fieldNameY() const { ...@@ -84,6 +84,6 @@ const string& CartesianGridXY::fieldNameY() const {
-# size in x -# size in x
-# size in y -# size in y
*/ */
vector<double> CartesianGridXY::cellDimensions(const CellID& cellID) const { vector<double> CartesianGridXY::cellDimensions(const CellID& id) const {
return access()->cellDimensions(cellID); return access()->cellDimensions(id);
} }
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