To Be Validated: Replace Boost Dependencies Integrated to the Standard C++17 Lib#485
Draft
Ohisemega wants to merge 9 commits into
Draft
To Be Validated: Replace Boost Dependencies Integrated to the Standard C++17 Lib#485Ohisemega wants to merge 9 commits into
Ohisemega wants to merge 9 commits into
Conversation
Replace all boost::shared_ptr instances with std::shared_ptr. Replace boost::enabled_shared_from_this with std::enabled_shared_from_this. Replace boost::make_shared with std::make_shared. Fixes #463
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #485 +/- ##
==========================================
+ Coverage 33.24% 33.27% +0.03%
==========================================
Files 94 94
Lines 7592 7600 +8
Branches 670 670
==========================================
+ Hits 2524 2529 +5
- Misses 4875 4878 +3
Partials 193 193 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Ohisemega
marked this pull request as draft
March 23, 2026 14:57
Replace boost concurerency headers with C++ standard library headers - <thread> <mutex> <condition_variable>.
Covert boost::mutex o sd::mutex.
Convert boost::lock_guard to std::lock_guard.
Convert boost:unique_lock to std::unique_lock.
Convert boost::recursive_lock to std::recursive_lock.
Convert boost::condition_variable to std::condition_variable.
Convert boost::thread to std::thread.
Convert boost::scoped_ptr to std::unique_ptr.
Fixes #463
Replace boost::any with std::any. Replace boost::variant with std::variant. Replace boost::placeholders with std::placeholders. Replace boost::bind with std::bind. Replace boost::function with std::function. Replace boost::ref with std::ref. Replace boost::optional std::optional. Replace relevant boost headers with standard library headers.
Ohisemega
marked this pull request as ready for review
April 4, 2026 19:17
Ohisemega
marked this pull request as draft
April 7, 2026 12:59
Replace boost::filesystem with std::filesystem.
Replace boost::shared_ptr with std::shared_ptr in BloscPlugin and BloscPluginTest.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Convert all
boost::shared_ptrinstances tostd::shared_ptr.Convert
boost::enabled_shared_from_thistostd::enabled_shared_from_this.Convert
boost::make_sharedtostd::make_shared.Convert
boost::mutextostd::mutex.Convert
boost::lock_guardtostd::lock_guard.Convert
boost::unique_locktostd::unique_lock.Convert
boost::recursive_locktostd::recursive_lock.Convert
boost::condition_variabletostd::condition_variable.Convert
boost::threadtostd::thread.Convert
boost::scoped_ptrtostd::unique_ptr.Convert
boost::anytostd::any.Convert
boost::varianttostd::variant.Convert
boost::placeholderstostd::placeholders.Convert
boost::bindtostd::bind.Convert
boost::functiontostd::function.Convert
boost::reftostd::ref.Convert
boost::optionaltostd::optional.Convert
boost::filesystemtostd::filesystem.Replace relevant
boostheaders with standard library headers.Fixes #463
DO NOT MERGE YET
Open to review!