aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2012-08-07 17:38:33 +0200
committerThomas White <taw@physics.org>2012-10-02 15:02:11 +0200
commit38f4df68678bb4c6eb8cbb3b721db2e130643299 (patch)
tree6e0775ecd6e0f308c0592926fd2e42dfa392caa9
parent32fdb97adf4f03e0c3ddceb96e4fe6111c4125c0 (diff)
"divisors" not needed any more
Was it ever needed?
-rw-r--r--libcrystfel/src/symmetry.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/libcrystfel/src/symmetry.c b/libcrystfel/src/symmetry.c
index 0352e441..68b39bcb 100644
--- a/libcrystfel/src/symmetry.c
+++ b/libcrystfel/src/symmetry.c
@@ -68,7 +68,6 @@ struct _symoplist
int n_ops;
int max_ops;
char *name;
- int *divisors;
int num_equivs;
};
@@ -84,7 +83,6 @@ struct _symopmask
static void alloc_ops(SymOpList *ops)
{
ops->ops = realloc(ops->ops, ops->max_ops*sizeof(struct sym_op));
- ops->divisors = realloc(ops->divisors, ops->max_ops*sizeof(int));
}
@@ -127,7 +125,6 @@ static SymOpList *new_symoplist()
new->max_ops = 16;
new->n_ops = 0;
new->ops = NULL;
- new->divisors = NULL;
new->name = NULL;
new->num_equivs = 1;
alloc_ops(new);