Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Core] Fix: proper destructors / rule of 5 for everything involving std::thread #1334

Merged
merged 2 commits into from Jan 24, 2024

Conversation

KerstinKeller
Copy link
Contributor

Related issues

Fixes #1329

Cherry-pick to

  • 5.11 (old stable)
  • 5.12 (current stable)
    (might not be easily cherry-pickable)

Comment on lines +71 to +74
CTimedCB(const CTimedCB&) = delete;
CTimedCB& operator=(const CTimedCB&) = delete;
CTimedCB(CTimedCB&& rhs) = delete;
CTimedCB& operator=(CTimedCB&& rhs) = delete;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does this cause an ABI break? 🤔

@KerstinKeller KerstinKeller merged commit a7f2c85 into master Jan 24, 2024
12 of 14 checks passed
@KerstinKeller KerstinKeller deleted the hotfix/destructor-cleanup branch January 25, 2024 18:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

ecal_thread.h misses Destructor
2 participants