From 3a961e50800ac45bdceac37fce3c3dd9aef5e6a7 Mon Sep 17 00:00:00 2001 From: Simon Heybrock <simon.heybrock@esss.se> Date: Wed, 24 Jun 2015 11:47:42 +0200 Subject: [PATCH] Re #12917 Default protected assignment operator for IMDWorkspace. --- Code/Mantid/Framework/API/inc/MantidAPI/IMDWorkspace.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Code/Mantid/Framework/API/inc/MantidAPI/IMDWorkspace.h b/Code/Mantid/Framework/API/inc/MantidAPI/IMDWorkspace.h index cacc4e583de..144d85de410 100644 --- a/Code/Mantid/Framework/API/inc/MantidAPI/IMDWorkspace.h +++ b/Code/Mantid/Framework/API/inc/MantidAPI/IMDWorkspace.h @@ -134,6 +134,7 @@ public: protected: IMDWorkspace(const IMDWorkspace &other) = default; + IMDWorkspace &operator=(const IMDWorkspace &other) = default; virtual const std::string toString() const; }; -- GitLab