diff options
author | Thomas White <taw@physics.org> | 2012-08-07 17:38:33 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-10-02 15:02:11 +0200 |
commit | 38f4df68678bb4c6eb8cbb3b721db2e130643299 (patch) | |
tree | 6e0775ecd6e0f308c0592926fd2e42dfa392caa9 /libcrystfel | |
parent | 32fdb97adf4f03e0c3ddceb96e4fe6111c4125c0 (diff) |
"divisors" not needed any more
Was it ever needed?
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/symmetry.c | 3 |
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); |