aboutsummaryrefslogtreecommitdiff
path: root/suffix_array.h
diff options
context:
space:
mode:
Diffstat (limited to 'suffix_array.h')
-rw-r--r--suffix_array.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/suffix_array.h b/suffix_array.h
index cf9af7d..75b3a38 100644
--- a/suffix_array.h
+++ b/suffix_array.h
@@ -11,7 +11,6 @@
#include <vector>
#include "base/check.h"
-#include "base/macros.h"
namespace zucchini {
@@ -425,8 +424,9 @@ class InducedSuffixSort {
suffix_array);
}
- private:
- DISALLOW_IMPLICIT_CONSTRUCTORS(Implementation);
+ Implementation() = delete;
+ Implementation(const Implementation&) = delete;
+ const Implementation& operator=(const Implementation&) = delete;
};
};