Skip to content
Snippets Groups Projects
Commit c3b305ce authored by ybedfer's avatar ybedfer Committed by Andre Sailer
Browse files

CylindricalGridPhiZ: Remove #if,#else __cplusplus >= 201103L condition: obsolete.

parent 07fdcd38
No related branches found
No related tags found
No related merge requests found
......@@ -91,14 +91,7 @@ Vector3D CylindricalGridPhiZ::position(const CellID& cID) const {
}
std::vector<double> CylindricalGridPhiZ::cellDimensions(const CellID&) const {
#if __cplusplus >= 201103L
return {_radius*_gridSizePhi, _gridSizeZ};
#else
std::vector<double> cellDims(2,0.0);
cellDims[0] = _radius*_gridSizePhi;
cellDims[1] = _gridSizeZ;
return cellDims;
#endif
}
......
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