]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
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 99d61538bc32d1452a695f719094733f67e33149..b5d9ce33b895f87aabbd26ad0ec786683c0bf871 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 5c49cbbe96f8dcc9b106027aa97efbee58d2364e..44e10ac4ba029e310d3fee6f6bcb6746dff559a3 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())