Make MyLargeFunctor large.

[SVN r48633]
This commit is contained in:
Douglas Gregor
2008-09-06 16:30:58 +00:00
parent 2fe4cc253f
commit da259e8dce

View File

@ -651,6 +651,8 @@ struct MyLargeFunctor {
MyLargeFunctor(const MyLargeFunctor &) { ++construction_count; } MyLargeFunctor(const MyLargeFunctor &) { ++construction_count; }
~MyLargeFunctor() { ++destruction_count; } ~MyLargeFunctor() { ++destruction_count; }
int operator()() { return 0; } int operator()() { return 0; }
float data[128];
}; };
void test_construct_destroy_count() void test_construct_destroy_count()