Delete the copy assignment operator while defaulting the other members.
Declared in <bslstl_variant.h>
template<
bool t_ISCOPYCONSTRUCTIBLE,
bool t_ISMOVECONSTRUCTIBLE>
struct Variant_CopyAssignBase<t_ISCOPYCONSTRUCTIBLE, t_ISMOVECONSTRUCTIBLE, false>
: Variant_MoveConstructorBase<t_ISCOPYCONSTRUCTIBLE, t_ISMOVECONSTRUCTIBLE>
This partial specialization is used when t_ISCOPYASSIGNABLE is false; it deletes the copy assignment operator while defaulting all other special member functions.
| Name | Description |
|---|---|
Variant_MoveConstructorBase<t_ISCOPYCONSTRUCTIBLE, t_ISMOVECONSTRUCTIBLE> | This component-private class has deleted move constructor if (template parameter) t_ISMOVECONSTRUCTIBLE is false. |
| Name | Description |
|---|---|
Variant_CopyAssignBase [constructor] | Constructors |
operator= | Assignment operators |