DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 11.5.0-1 / yo / memory / examples / unions / union / swap2value.cc
12345678
#include "union.ih" void Union::swap2Value(Union &other) { int value = u_value; u_value = other.u_value; other.u_value = value; }