From a70f0cfcd60455a29fd52fa977d8e9b8e7e0b31d Mon Sep 17 00:00:00 2001 From: weidai Date: Sat, 26 Apr 2003 04:56:38 +0000 Subject: [PATCH] workaround for GCC --- trunk/c5/test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/trunk/c5/test.cpp b/trunk/c5/test.cpp index e9d66c61..640dece5 100644 --- a/trunk/c5/test.cpp +++ b/trunk/c5/test.cpp @@ -204,7 +204,8 @@ int main(int argc, char *argv[]) if (command == "mt") { MaurerRandomnessTest mt; - FileStore(argv[2]).TransferAllTo(mt); + FileStore fs(argv[2]); + fs.TransferAllTo(mt); cout << "Maurer Test Value: " << mt.GetTestValue() << endl; } else