Reimplement generics as wrappers of C++ std library functions #7241
Labels
cleanup
Cleaning up and organizing our repositories
devOps
Improving or adding new tests & CI capabilities
priority-5-low
#5 Priority - Something that should happen eventually
📁 Repo: protocol
This PR/Issue modifies /protocol code
Feature Description
We have our own custom implementations of queue and linked list right now, but now that we have transitioned to a mix of C++ and C instead of just C, we can take advantage of the existing implementations of generics that C++ has.
The Problem It Fixes
We have less code to debug and maintain!
Potential Implementation(s)
Make
fifo_queue
a wrapper ofstd::deque
andlinked_list
a wrapper ofstd::list
.The text was updated successfully, but these errors were encountered: