diff --git a/src/cell.h b/src/cell.h index d4b001759e0c7923a8f1857bfb620d1f7bdb6ee1..9e5bed091178b59e1b757c420bc1d5fde0b9ce42 100644 --- a/src/cell.h +++ b/src/cell.h @@ -246,6 +246,12 @@ struct cell { /*! ID of the node this cell lives on. */ int nodeID; + /*! Is the #part data of this cell being used in a sub-cell? */ + int hold; + + /*! Is the #gpart data of this cell being used in a sub-cell? */ + int ghold; + /*! Number of tasks that are associated with this cell. */ short int nr_tasks; @@ -258,12 +264,6 @@ struct cell { /*! The maximal depth of this cell and its progenies */ char maxdepth; - /*! Is the #part data of this cell being used in a sub-cell? */ - char hold; - - /*! Is the #gpart data of this cell being used in a sub-cell? */ - char ghold; - } SWIFT_STRUCT_ALIGN; /* Convert cell location to ID. */