diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-05-05 14:44:14 +0100 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2019-05-05 14:44:14 +0100 |
commit | 3ba5539c6c85ae4af57cf0f9da8d6ad26d50fe1c (patch) | |
tree | 8ef425675c8538de5b4add4973ef90cb01ef3a5a | |
parent | Add missing implicit-dep on test lib (diff) | |
download | project2-3ba5539c6c85ae4af57cf0f9da8d6ad26d50fe1c.tar.bz2 project2-3ba5539c6c85ae4af57cf0f9da8d6ad26d50fe1c.tar.xz project2-3ba5539c6c85ae4af57cf0f9da8d6ad26d50fe1c.zip |
Explicitly add now deprecated implicit copy operator to VariableType
-rw-r--r-- | project2/common/variableType.h | 2 |
1 files changed, 2 insertions, 0 deletions
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); |