You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several usages of boost::noncopyable which could be replaced with expicit Object(const Object& o) = delete; and Object& operator=(const Object& o) = delete; statements. Switching to this would reduce the number of dependencies on boost.
Steps to Reproduce
N/A
System Information (OS, Hardware)
N/A
Package Versions
N/A
Build Flags
N/A
The text was updated successfully, but these errors were encountered:
nvmkuruc
changed the title
Prefer explicit deletion of copy constructor and assignment operator to boost::noncopyable
Prefer explicit deletion of copy constructor and assignment operator to boost::noncopyableJan 30, 2023
Description of Issue
There are several usages of
boost::noncopyable
which could be replaced with expicitObject(const Object& o) = delete;
andObject& operator=(const Object& o) = delete;
statements. Switching to this would reduce the number of dependencies on boost.Steps to Reproduce
N/A
System Information (OS, Hardware)
N/A
Package Versions
N/A
Build Flags
N/A
The text was updated successfully, but these errors were encountered: