我在 Boost 1.51+ 中遇到了 fast_pool_allocator 的问题,该问题在 1.45 中不存在。经过一些研究,我能够找出原因,但现在我想知道是否有可能找到一些在 Boost 中所做的更改的完整列表,甚至是涉及特定类的更改列表?
问问题
86 次
2 回答
9
浏览发行说明:
- http://www.boost.org/users/history/version_1_54_0.html
- http://www.boost.org/users/history/version_1_53_0.html
- http://www.boost.org/users/history/version_1_52_0.html
- http://www.boost.org/users/history/version_1_51_0.html
- http://www.boost.org/users/history/version_1_50_0.html
- http://www.boost.org/users/history/version_1_49_0.html
- http://www.boost.org/users/history/version_1_48_0.html
- http://www.boost.org/users/history/version_1_47_0.html
- http://www.boost.org/users/history/version_1_46_0.html
注意:当心中间版本(尽管这些通常只包含错误修正)。
仅针对“Boost Pool”公开此内容(在浏览器中使用增量搜索:))
游泳池:
- 现在可以为池设置 max_size (#2696)
- boost/pool/pool.hpp 使用 reinterpret_cast 而不是 static_cast (#2941)
- boost::pool_allocator 现在适用于向量的向量 (#386)
- Boost 池现在与 Microsoft 内存泄漏检测兼容 (#4346)
这会提示我仔细研究 v1.46.0 中 Boost Pool 的变化
于 2013-07-29T11:40:35.793 回答
2
You can:
Use the github mirror for boost-svn
Check it out and type
git log --pretty=oneline tagA...tagB
Where tagA and tagB are version tags listed in the github page under branch button.
Or:
Using the github repo and giving it a compare url like this:
https://github.com/ryppl/boost-svn/compare/Boost_1_45_0...Boost_1_51_0
You can see most recent commits.
于 2013-07-29T11:37:44.927 回答