diff options
author | Thomas White <taw@physics.org> | 2020-07-30 11:19:21 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-30 11:19:21 +0200 |
commit | 47746f10fd33016824b00df0cccfaaeabc4412f7 (patch) | |
tree | 95f293ae0b74f5b6d77d99dd4ec49072b4f4cb23 | |
parent | 1bc709a8adaf0f71d30efd013549a2fa28a0fec6 (diff) |
asdf: Fix includes
Not sure what dirax.h was doing there, and cell.h should really be included.
-rw-r--r-- | libcrystfel/src/asdf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcrystfel/src/asdf.c b/libcrystfel/src/asdf.c index 77bd0d13..1536a109 100644 --- a/libcrystfel/src/asdf.c +++ b/libcrystfel/src/asdf.c @@ -44,11 +44,11 @@ #include <gsl/gsl_fit.h> #include "image.h" -#include "dirax.h" #include "utils.h" #include "peaks.h" #include "cell-utils.h" #include "asdf.h" +#include "cell.h" /** * \file asdf.h |