aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/cell.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-05-17 11:37:21 +0200
committerThomas White <taw@physics.org>2021-05-17 11:52:42 +0200
commit6026a3eaf235b59671ac2437e0c9a4fa8878b856 (patch)
treee68feddd893f3e8e67bc297fdc9d9ce2fbb7be4e /libcrystfel/src/cell.c
parentaffdfe20be27586a65b4db483f04481008ae63fe (diff)
Resolve FIXMEs and TODOs
Prompted by the article linked below, for each FIXME/TODO I've either referenced an issue in the tracker, or removed it if it's not worth fixing. https://schleiss.io/plotting-source-code-todos-for-open-source-projects
Diffstat (limited to 'libcrystfel/src/cell.c')
-rw-r--r--libcrystfel/src/cell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcrystfel/src/cell.c b/libcrystfel/src/cell.c
index 4dea2ce1..775567e3 100644
--- a/libcrystfel/src/cell.c
+++ b/libcrystfel/src/cell.c
@@ -884,7 +884,7 @@ UnitCell *cell_transform_rational(UnitCell *cell, RationalMatrix *m)
ncen = determine_centering(m, cell_get_centering(cell));
cell_set_centering(out, ncen);
- /* FIXME: Update unique axis, lattice type */
+ /* FIXME: Update unique axis, lattice type (GitLab #39) */
cell_set_lattice_type(out, L_TRICLINIC);
cell_set_unique_axis(out, '?');
@@ -972,7 +972,7 @@ UnitCell *cell_transform_rational_inverse(UnitCell *cell, RationalMatrix *m)
out = cell_transform_gsl_direct(cell, inv);
- /* FIXME: Update centering, unique axis, lattice type */
+ /* FIXME: Update centering, unique axis, lattice type (GitLab #39) */
gsl_matrix_free(tm);
gsl_matrix_free(inv);