metamage_1
metamage_1 copied to clipboard
C standard my compiler uses didn't include uint64_t or gettimeofday
Don't know if this is the expected result, but I was able to compile and run:
0 default ctor : 0 0 0 1 small ctor : 100 0 0 2 normal ctor : 100 100 0 3 small copy : 100 100 100 4 sharable copy : 0 0 0 5 static copy : SKIP 100 0 6 const iterator : 100 0 0 7 (COW) iterator : 100 0 100 8 unsharable copy: 100 0 100 9 unsharable move: 100 0 100 10 small move : 100 100 0 11 sharable move : 100 0 0 12 moved iterator : 100 100 0