aboutsummaryrefslogtreecommitdiff
path: root/collections/double_ended_queue/double_ended_queue.adoc
AgeCommit message (Collapse)Author
2020-07-06Fix double ended queue did not print free stringsTucker 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-02Fix add links to referenced functions in deq docsTucker Evans
2020-07-02Add anchors for each function to documentation of deqTucker Evans
2020-06-21Move double ended queue files to own directoryTucker Evans