summaryrefslogtreecommitdiff
path: root/src/mongo/db/views/view_graph.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/views/view_graph.h')
-rw-r--r--src/mongo/db/views/view_graph.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/views/view_graph.h b/src/mongo/db/views/view_graph.h
index 1315a928794..cddc0d20c50 100644
--- a/src/mongo/db/views/view_graph.h
+++ b/src/mongo/db/views/view_graph.h
@@ -50,7 +50,8 @@ class ViewDefinition;
* This is owned and managed by the ViewCatalog.
*/
class ViewGraph {
- MONGO_DISALLOW_COPYING(ViewGraph);
+ ViewGraph(const ViewGraph&) = delete;
+ ViewGraph& operator=(const ViewGraph&) = delete;
public:
static const int kMaxViewDepth;