sduzh opened a new issue #4946:
URL: https://github.com/apache/incubator-doris/issues/4946


   We can reduce  dependency on Boost by replacing parts of it with stdlib 
equivalents:
   
   - boost::unordered_map -> c++ 11 std::unordered_map
   - boost::mutex -> c++ 11 std::mutex
   - boost::condition_variable -> c++ 11 std::condition_variable
   - boost::lock_guard -> c++ 11 std::lock_guard
   - boost::thread -> c++ 11 std::thread
   - boost::shared_ptr -> c++ 11 std::shared_ptr
   - boost::scoped_ptr -> c++ 11 std::unique_ptr
   - boost foreach -> c++ 11 built-in range-based for
   - boost::variant -> c++ 17 std::variant
   - boost::scoped_array -> c++ 11 std::unique_ptr<T[]>
   - boost::function -> c++ 11 std::function
   - boost::bind -> c++ 11 lambda or std::bind
   - boost::lexical_cast -> c++ std::to_string
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to