Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/gemmi/grid.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ inline double cubic_interpolation_der(double u, double a, double b, double c, do
/// Grid indices u, v, w are in the range [0, nu), [0, nv), [0, nw) for valid grids.
struct GridMeta {
UnitCell unit_cell; ///< Unit cell of the crystal
const SpaceGroup* spacegroup; ///< Space group (may be nullptr for P1)
const SpaceGroup* spacegroup = nullptr; ///< Space group (may be nullptr for P1)
int nu = 0, nv = 0, nw = 0; ///< Grid dimensions
AxisOrder axis_order = AxisOrder::Unknown; ///< Grid axis correspondence to a, b, c

Expand Down
Loading