Commit 69240fc2 by Stephen M. Webb Committed by Stephen M. Webb

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
parent 5153cd4b
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())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment