summaryrefslogtreecommitdiff
path: root/test.cpp
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-04-26 04:56:38 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2003-04-26 04:56:38 +0000
commitfc7a635748fec6087d2459eab6acc862bd63036b (patch)
tree8523131bcead143a03bd15c8b1c8abe7fca6059e /test.cpp
parentb3a043eb7abcc2677637ec9fed4503b307ce08c2 (diff)
downloadcryptopp-fc7a635748fec6087d2459eab6acc862bd63036b.tar.gz
workaround for GCC
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@65 57ff6487-cd31-0410-9ec3-f628ee90f5f0
Diffstat (limited to 'test.cpp')
-rw-r--r--test.cpp3
1 files changed, 2 insertions, 1 deletions
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