More Exceptional C++ の48ページによると > This was fixed in 2001 as part of Technical Corrigendum #1 to > the C++ standard, which now requires that the contents of > a vector are stored contiguously, just like an array とな。いや、俺もTC1の現物は見たこと無いんだけど。
.h --------------------------------------------- class T { int get0() { return 0; } // インライン展開される int get1(); inline int get2(); int get3(); }; inline int get1() { return 1; } // インライン展開される int get2() { return 2; } // インライン展開される