fixed: in Object::GetValueAndParam() there was value.empty() used instead of value.clear()

git-svn-id: svn://ttmath.org/publicrep/ttmath/trunk@1046 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
Tomasz Sowa 2017-02-08 08:42:02 +00:00
parent f4f7882387
commit 46ed8c3108
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2006-2010, Tomasz Sowa
* Copyright (c) 2006-2017, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@ -484,7 +484,7 @@ public:
if( i == table.end() )
{
value.empty();
value.clear();
*param = 0;
return err_unknown_object;
}