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
+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
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())