From da259e8dcedee00bf5277d88016baedcce9bd7fd Mon Sep 17 00:00:00 2001 From: Douglas Gregor Date: Sat, 6 Sep 2008 16:30:58 +0000 Subject: [PATCH] Make MyLargeFunctor large. [SVN r48633] --- test/function_n_test.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/function_n_test.cpp b/test/function_n_test.cpp index 5d8d0d5..cdd7145 100644 --- a/test/function_n_test.cpp +++ b/test/function_n_test.cpp @@ -651,6 +651,8 @@ struct MyLargeFunctor { MyLargeFunctor(const MyLargeFunctor &) { ++construction_count; } ~MyLargeFunctor() { ++destruction_count; } int operator()() { return 0; } + + float data[128]; }; void test_construct_destroy_count()