Understood. However, I'm still having issues with the compiler throwing
Operator.ice
:49: `softwareVersions' has changed meaning
given:
Code:
module service {
class Cluster;
class SoftwareVersions;
class Cluster {
string name;
int size;
long startTime;
string status;
string environmentType;
bool debugMode;
bool requireSecurity;
SoftwareVersions softwareVersions;
sequence<Member> members;
};
};
where line 49 is 'SoftwareVersions softwareVersions;' for example. I appreciate I need to sort the sequence of Member type, which has been omitted for brevity. Can you please advise on what the above error means?