From fc7a635748fec6087d2459eab6acc862bd63036b Mon Sep 17 00:00:00 2001 From: weidai Date: Sat, 26 Apr 2003 04:56:38 +0000 Subject: workaround for GCC git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@65 57ff6487-cd31-0410-9ec3-f628ee90f5f0 --- test.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test.cpp') diff --git a/test.cpp b/test.cpp index e9d66c6..640dece 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 -- cgit v1.2.1