#include "smat.h" #include int main() { unsigned a; smat_d b, c, d; // smat difference type adaptor. int e, f; std::cerr << "a: " << &a << ": " << sizeof(a) << '\n' << "b: " << &b << ": " << sizeof(b) << '\n' << "c: " << &c << ": " << sizeof(c) << '\n' << "d: " << &d << ": " << sizeof(d) << '\n' << "e: " << &e << ": " << sizeof(e) << '\n' << "f: " << &f << ": " << sizeof(f) << '\n'; return 0; }