Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-06 | Fix ordering of functions in double ended queue documentation | Tucker Evans | |
2020-07-06 | Fix double ended queue did not print free strings | Tucker Evans | |
Because it is possible for to_string function to generate a new string here and nothing else sees it after printing it is not guaranteed to be freed leading to a memory leak. This does mean that if the string is internal to a struct and expected to be used later then to_string should duplicate said string (as noted in the documentation). | |||
2020-07-06 | Fix double ended queue remove | Tucker Evans | |
Did not return the removed object, could easily lead to a memory leak. | |||
2020-07-06 | Fix organize functions order in double ended queue src files | Tucker Evans | |
2020-07-03 | Merge branch 'docs' into develop | Tucker Evans | |
2020-07-03 | Fix output of debug print for double ended queue | Tucker Evans | |
2020-07-02 | Fix add links to referenced functions in deq docs | Tucker Evans | |
2020-07-02 | Add anchors for each function to documentation of deq | Tucker Evans | |
2020-07-02 | Fix double ended queue header file define | Tucker Evans | |
Never changed the check define from `VECTOR_H` when converting to double ended queue, now `DOUBLE_ENDED_QUEUE_H`. | |||
2020-06-21 | Move double ended queue files to own directory | Tucker Evans | |