Commit 14bcb18f authored by Jakub Klinkovský's avatar Jakub Klinkovský
Browse files

Fixed uninitialized attributes in NDMetaGrid

parent a0c48268
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -90,11 +90,11 @@ public:
   }

protected:
   CoordinatesType dimensions;
   CoordinatesType dimensions = 0;

   PointType origin;
   PointType origin = 0;

   PointType spaceSteps;
   PointType spaceSteps = 0;
};

} // namespace Meshes