Added missing default constructor

This commit is contained in:
GullCode 2021-01-27 16:43:13 +01:00
parent 19ebf14e8c
commit f0457c106d

View File

@ -50,6 +50,8 @@ struct ERTKey {
{
}
ERTKey( const ERTKey& other ) = default;
ERTKey& operator=(const ERTKey& other) {
id = other.id;
commodity_type = other.commodity_type;