-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
2018-??-?? Shuo Chen <[email protected]> | ||
* First release of C++11 version of muduo. | ||
* Forked after v1.0.9, e6c04c43 is the base. | ||
* Replace boost::shared_ptr/boost::weak_ptr with std::shared_ptr/std::weak_ptr. | ||
* Replace boost::function/boost::bind with std::function/std::bind/lambda. | ||
* Replace boost::ptr_vector<T> with std::vector<std::unique_ptr<T>>. | ||
* Replace boost::noncopyable with muduo::noncopyable. | ||
* Replace boost::scoped_ptr with std::unique_ptr. | ||
* Replace BOOST_STATIC_ASSERT with static_assert. | ||
* Replace boost type_traits with std type_traits. | ||
* Version 2.0.0 | ||
|