diff options
author | Thomas White <taw@physics.org> | 2017-07-24 11:54:18 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2017-07-24 11:54:18 +0200 |
commit | c9dee7dba94cdd314d2769d30695d995d491b9cb (patch) | |
tree | 1f65bf4bf25813f4959e0e61b8d7c9587a616061 /libcrystfel/src/taketwo.h | |
parent | 5458f4571c8856064e31d80d0b60eeebecb5f00b (diff) |
Make struct taketwo_options const
Diffstat (limited to 'libcrystfel/src/taketwo.h')
-rw-r--r-- | libcrystfel/src/taketwo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcrystfel/src/taketwo.h b/libcrystfel/src/taketwo.h index a03292a8..6c9d7513 100644 --- a/libcrystfel/src/taketwo.h +++ b/libcrystfel/src/taketwo.h @@ -45,7 +45,8 @@ struct taketwo_options extern void *taketwo_prepare(IndexingMethod *indm, UnitCell *cell, struct detector *det, float *ltl); -extern int taketwo_index(struct image *image, struct taketwo_options *opts, void *priv); +extern int taketwo_index(struct image *image, + const struct taketwo_options *opts, void *priv); extern void taketwo_cleanup(IndexingPrivate *pp); #endif /* TAKETWO_H */ |