-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: only define constructors for Client types (#418)
The `Client` types that follow pimpl idiom had warnings that they needed to define destructors as well to satisfy the rule of five. We don't need to define move/copy/copy-assign/move-assign for these at all, instead we can follow the rule of zero since the only member is a `std::unique_ptr`.
- Loading branch information
1 parent
811cece
commit f719d78
Showing
2 changed files
with
0 additions
and
10 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
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