X-Git-Url: https://git.auder.net/?p=cgds.git;a=blobdiff_plain;f=src%2Ftypes.h;fp=src%2Ftypes.h;h=bfa0516466496d5faac81b0b245883174f4a00bb;hp=f202b26f78377b9a86ffe405fb2db9d8879a2eee;hb=e45132acdb58c076d5e06849fa51c26de9a7486d;hpb=1ff641f9960fa6c6081817a5641afb22fad91dcd diff --git a/src/types.h b/src/types.h index f202b26..bfa0516 100644 --- a/src/types.h +++ b/src/types.h @@ -29,16 +29,16 @@ typedef double Real; * @brief Enumeration for the type of buffer or heap. */ typedef enum { - MIN_T = 0, ///< Minimum element first. - MAX_T = 1 ///< Maximum element first. + MIN_T = 0, ///< Minimum element first. + MAX_T = 1 ///< Maximum element first. } OrderType; /** * @brief Generic item-value type; 'value' may correspond e.g. to distance. */ typedef struct ItemValue { - void* item; ///< Pointer to an item of any type. - Real value; ///< Value associated with the item. + void* item; ///< Pointer to an item of any type. + Real value; ///< Value associated with the item. } ItemValue; #endif