#8875 closed Feature Requests (fixed)
Boost.Serialization missing std::stack serialization
Reported by: | Owned by: | Robert Ramey | |
---|---|---|---|
Milestone: | To Be Determined | Component: | serialization |
Version: | Boost 1.54.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Boost.Serialization missing std::stack serialization. I wasn't sure whether this was a feature request or a bug. Does Boost.Serialization target all C++ builtin types?
Change History (3)
comment:1 by , 9 years ago
comment:2 by , 9 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
I've checked in changes to the development branch. These changes implement serialization for: <stack> <array> <stack> <queue> <priority_queue> <forward_list>
Note:
See TracTickets
for help on using tickets.
Boost serialization DOES target all built-in types. But they add built-in types when I'm not looking. Consider making your implementation of serialization for this header and submit for consideration. Don't forget to include a test. Look that the current tests for examples on how to do this.
RObert Ramey