DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 13.02.02-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; }