Fixed abi_check for missing symbol size changes.
2007-07-25 Stephen M. Webb <stephenw@xandros.com> Fixed abi_check for missing symbol size changes. * testsuite/util/testsuite_abi.cc: Changed local variable name to prevent member variable hiding. From-SVN: r126956
This commit is contained in:
parent
5153cd4b9c
commit
69240fc232
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2007-07-25 Stephen M. Webb <stephenw@xandros.com>
|
||||
|
||||
Fixed abi_check for missing symbol size changes.
|
||||
* testsuite/util/testsuite_abi.cc: Changed local variable name to prevent
|
||||
member variable hiding.
|
||||
|
||||
2007-07-25 John Davind Anglin <dave.anglin@nrc-cnrc.gc.ca>
|
||||
|
||||
PR libstdc++/31836
|
||||
|
|
|
@ -61,8 +61,8 @@ symbol::init(string& data)
|
|||
n = data.find_first_of(delim);
|
||||
if (n != npos)
|
||||
{
|
||||
string size(data.begin(), data.begin() + n);
|
||||
istringstream iss(size);
|
||||
string objectsize(data.begin(), data.begin() + n);
|
||||
istringstream iss(objectsize);
|
||||
int x;
|
||||
iss >> x;
|
||||
if (!iss.fail())
|
||||
|
|
Loading…
Add table
Reference in a new issue