From 86f5140826f1babc5079e73081cd03acb16ee95f Mon Sep 17 00:00:00 2001 From: weidai Date: Sat, 26 Apr 2003 04:56:38 +0000 Subject: [PATCH] workaround for GCC --- test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test.cpp b/test.cpp index e9d66c61..640dece5 100644 --- a/test.cpp +++ b/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