From 3ba5539c6c85ae4af57cf0f9da8d6ad26d50fe1c Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sun, 5 May 2019 14:44:14 +0100 Subject: Explicitly add now deprecated implicit copy operator to VariableType --- project2/common/variableType.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/project2/common/variableType.h b/project2/common/variableType.h index 292b349..70d6b4a 100644 --- a/project2/common/variableType.h +++ b/project2/common/variableType.h @@ -80,6 +80,8 @@ class DLL_PUBLIC VariableType : public _VT { VariableType(); VariableType(const VariableType &); + VariableType & operator=(const VariableType &) = default; + static VariableType make(const Glib::ustring & src, VT_typeID format); static VariableType make(const Glib::ustring & src); static VT_typeID getTypeFromName(const std::string & src); -- cgit v1.2.3