X-Git-Url: https://git.auder.net/?p=cgds.git;a=blobdiff_plain;f=src%2FQueue.h;fp=src%2FQueue.h;h=0cd97665b2ed0ad4cce98b3a1fa0296f68cb9190;hp=619ae4addce82ad8b3de5c9f8c1d260bde0ef3c9;hb=195fd722d1d22a3a6163de16dd827770b3d9d39e;hpb=6860e3738006ac605540c4f7bd9b7a8bb75383ac diff --git a/src/Queue.h b/src/Queue.h index 619ae4a..0cd9766 100644 --- a/src/Queue.h +++ b/src/Queue.h @@ -9,7 +9,7 @@ #include #include "cgds/types.h" #include "cgds/safe_alloc.h" -#include "cgds/Vector.h" +#include "cgds/List.h" /** * @brief Queue containing generic data. @@ -17,7 +17,7 @@ */ typedef struct Queue { size_t dataSize; ///< Size in bytes of a queue element. - Vector* array; ///< Internal vector representation + List* list; ///< Internal list representation } Queue; /**