diff options
author | François Dumont <fdumont@gcc.gnu.org> | 2018-03-09 05:56:07 +0000 |
---|---|---|
committer | François Dumont <fdumont@gcc.gnu.org> | 2018-03-09 05:56:07 +0000 |
commit | 5da6b0135551f0060cd86d62cbbbfa5a4013157d (patch) | |
tree | 2a83c58b432d4b85de6779adcc81931065237ed8 | |
parent | 5dbbf8991de1fc28eee8764d21827dfd0ac69f2d (diff) | |
download | gcc-5da6b0135551f0060cd86d62cbbbfa5a4013157d.zip gcc-5da6b0135551f0060cd86d62cbbbfa5a4013157d.tar.gz gcc-5da6b0135551f0060cd86d62cbbbfa5a4013157d.tar.bz2 |
printers.py (build_libstdcxx_dictionary): Fix std::_Fwd_list_iterator and std::_Fwd_list_const_iterator printers registration.
2018-03-09 François Dumont <fdumont@gcc.gnu.org>
* python/libstdcxx/v6/printers.py (build_libstdcxx_dictionary):
Fix std::_Fwd_list_iterator and std::_Fwd_list_const_iterator printers
registration.
From-SVN: r258380
-rw-r--r-- | libstdc++-v3/ChangeLog | 6 | ||||
-rw-r--r-- | libstdc++-v3/python/libstdcxx/v6/printers.py | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index ae464dd..7db7e81 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2018-03-09 François Dumont <fdumont@gcc.gnu.org> + + * python/libstdcxx/v6/printers.py (build_libstdcxx_dictionary): + Fix std::_Fwd_list_iterator and std::_Fwd_list_const_iterator printers + registration. + 2018-03-09 Jonathan Wakely <jwakely@redhat.com> PR libstdc++/84769 diff --git a/libstdc++-v3/python/libstdcxx/v6/printers.py b/libstdc++-v3/python/libstdcxx/v6/printers.py index b5f76f2..45aaa12 100644 --- a/libstdc++-v3/python/libstdcxx/v6/printers.py +++ b/libstdc++-v3/python/libstdcxx/v6/printers.py @@ -1744,10 +1744,10 @@ def build_libstdcxx_dictionary (): StdVectorIteratorPrinter) libstdcxx_printer.add_version('__gnu_cxx::', '_Slist_iterator', StdSlistIteratorPrinter) - libstdcxx_printer.add_version('__gnu_cxx::', '_Fwd_list_iterator', - StdFwdListIteratorPrinter) - libstdcxx_printer.add_version('__gnu_cxx::', '_Fwd_list_const_iterator', - StdFwdListIteratorPrinter) + libstdcxx_printer.add_container('std::', '_Fwd_list_iterator', + StdFwdListIteratorPrinter) + libstdcxx_printer.add_container('std::', '_Fwd_list_const_iterator', + StdFwdListIteratorPrinter) # Debug (compiled with -D_GLIBCXX_DEBUG) printer # registrations. |