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

@@ -44,6 +44,7 @@
#include "util/compare.h"
#include "util/dump_mask.h"
#include "util/math.h"
#include "util/noncopyable.h"
#include "util/target_info.h"
#include "util/ue2string.h"
#include "util/verify_types.h"
@@ -62,7 +63,6 @@
#include <string>
#include <vector>
#include <boost/core/noncopyable.hpp>
#include <boost/multi_array.hpp>
using namespace std;
@@ -71,7 +71,7 @@ namespace ue2 {
namespace {
class FDRCompiler : boost::noncopyable {
class FDRCompiler : noncopyable {
private:
const FDREngineDescription &eng;
const Grey &grey;

View File

@@ -35,6 +35,7 @@
#include "ue2common.h"
#include "util/alloc.h"
#include "util/compare.h"
#include "util/noncopyable.h"
#include "util/popcount.h"
#include "util/target_info.h"
#include "util/verify_types.h"
@@ -55,8 +56,6 @@
#include <string>
#include <vector>
#include <boost/core/noncopyable.hpp>
using namespace std;
namespace ue2 {
@@ -65,7 +64,7 @@ namespace {
//#define TEDDY_DEBUG
class TeddyCompiler : boost::noncopyable {
class TeddyCompiler : noncopyable {
const TeddyEngineDescription &eng;
const Grey &grey;
const vector<hwlmLiteral> &lits;