boost::noncopyable is redundant since we declare a copy ctor

This commit is contained in:
Mark Roszko 2024-01-02 16:10:24 +00:00
parent 5d3c35c5d3
commit d4f6425523
1 changed files with 1 additions and 2 deletions

View File

@ -27,7 +27,6 @@
#define _LIB_TABLE_BASE_H_ #define _LIB_TABLE_BASE_H_
#include <map> #include <map>
#include <boost/noncopyable.hpp>
#include <boost/ptr_container/ptr_vector.hpp> #include <boost/ptr_container/ptr_vector.hpp>
#include <memory> #include <memory>
#include <mutex> #include <mutex>
@ -63,7 +62,7 @@ LIB_TABLE_ROW* new_clone( const LIB_TABLE_ROW& aRow );
* Hold a record identifying a library accessed by the appropriate plug in object in the * Hold a record identifying a library accessed by the appropriate plug in object in the
* #LIB_TABLE. This is an abstract base class from which to derive library specific rows. * #LIB_TABLE. This is an abstract base class from which to derive library specific rows.
*/ */
class LIB_TABLE_ROW : boost::noncopyable class LIB_TABLE_ROW
{ {
public: public:
LIB_TABLE_ROW() : LIB_TABLE_ROW() :