I'm just trying out the clientgen and come accross an issue with my schema. I have a GraphQL input type called UserDefinedFieldInput which contains a field called value, this causes a C4458 compiler warning in the =operator: ``` UserDefinedFieldInput& UserDefinedFieldInput::operator=(const UserDefinedFieldInput& other) { UserDefinedFieldInput value { other }; std::swap(*this, value); return *this; } ``` ``` warning C4458: declaration of 'value' hides class member see declaration of 'graphql::client::GraphQL::UserDefinedFieldInput::value' ```