DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 11.5.0-1 / yo / memory / examples / unions / data / operatorassign1.cc
12345678
#include "data.ih" Data &Data::operator=(Data const &other) { Data tmp{ other }; swap(tmp); return *this; }