noncopyable: switch over from boost

This commit is contained in:
Justin Viiret
2017-03-30 14:37:35 +11:00
committed by Matthew Barr
parent a9844fbf74
commit 1ef87c43ee
22 changed files with 48 additions and 54 deletions

View File

@@ -36,12 +36,12 @@
#include "ue2common.h"
#include "util/compile_error.h"
#include "util/noncopyable.h"
#include "util/report.h"
#include <map>
#include <set>
#include <vector>
#include <boost/core/noncopyable.hpp>
namespace ue2 {
@@ -57,7 +57,7 @@ struct external_report_info {
};
/** \brief Tracks Report structures, exhaustion and dedupe keys. */
class ReportManager : boost::noncopyable {
class ReportManager : noncopyable {
public:
explicit ReportManager(const Grey &g);