OSDN Git Service

2007-07-25 Stephen M. Webb <stephenw@xandros.com>
authorsmw <smw@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 26 Jul 2007 12:45:06 +0000 (12:45 +0000)
committersmw <smw@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 26 Jul 2007 12:45:06 +0000 (12:45 +0000)
  Fixed abi_check for missing symbol size changes.
* testsuite/util/testsuite_abi.cc: Changed local variable name to prevent
member variable hiding.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@126956 138bc75d-0d04-0410-961f-82ee72b054a4

libstdc++-v3/ChangeLog
libstdc++-v3/testsuite/util/testsuite_abi.cc

index 99d6153..b5d9ce3 100644 (file)
@@ -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
index 5c49cbb..44e10ac 100644 (file)
@@ -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())