aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/python
diff options
context:
space:
mode:
authorFrançois Dumont <fdumont@gcc.gnu.org>2014-10-01 19:24:23 +0000
committerFrançois Dumont <fdumont@gcc.gnu.org>2014-10-01 19:24:23 +0000
commit4681f59563ac941fb7a2e764150ddf65d7ff91a0 (patch)
tree7777ed42033707bdf80136b97fbc9086c108277c /libstdc++-v3/python
parent662bb4b85ea6f0ccf1871b480554f6197133de1b (diff)
downloadgcc-4681f59563ac941fb7a2e764150ddf65d7ff91a0.zip
gcc-4681f59563ac941fb7a2e764150ddf65d7ff91a0.tar.gz
gcc-4681f59563ac941fb7a2e764150ddf65d7ff91a0.tar.bz2
printers.py (StdDebugIteratorPrinter.to_string): Adapt to latest modifications on debug iterators.
2014-10-01 François Dumont <fdumont@gcc.gnu.org> * python/libstdcxx/v6/printers.py (StdDebugIteratorPrinter.to_string): Adapt to latest modifications on debug iterators. From-SVN: r215775
Diffstat (limited to 'libstdc++-v3/python')
-rw-r--r--libstdc++-v3/python/libstdcxx/v6/printers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/python/libstdcxx/v6/printers.py b/libstdc++-v3/python/libstdcxx/v6/printers.py
index 2e5cd6c..48ecb67 100644
--- a/libstdc++-v3/python/libstdcxx/v6/printers.py
+++ b/libstdc++-v3/python/libstdcxx/v6/printers.py
@@ -460,7 +460,7 @@ class StdDebugIteratorPrinter:
# and return the wrapped iterator value.
def to_string (self):
itype = self.val.type.template_argument(0)
- return self.val['_M_current'].cast(itype)
+ return self.val.cast(itype)
class StdMapPrinter:
"Print a std::map or std::multimap"