diff options
| author | François Dumont <fdumont@gcc.gnu.org> | 2022-09-21 18:59:43 +0200 |
|---|---|---|
| committer | François Dumont <fdumont@gcc.gnu.org> | 2022-09-22 06:22:59 +0200 |
| commit | 42630dc056ddf2dbe012aa7cc8eee09c5b960102 (patch) | |
| tree | 010f1146a12d3aa147bda0e643238762d1359700 /libstdc++-v3/python | |
| parent | f85847bd40684ced76482cb35342935bac69054a (diff) | |
libstdc++: Remove useless gdb printer registrations
libstdc++-v3/ChangeLog:
* python/libstdcxx/v6/printers.py: Remove ptinter registration for non-existing
types std::__debug::unique_ptr, std::__debug::stack, std::__debug::queue,
std::__debug::priority_queue.
Diffstat (limited to 'libstdc++-v3/python')
| -rw-r--r-- | libstdc++-v3/python/libstdcxx/v6/printers.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libstdc++-v3/python/libstdcxx/v6/printers.py b/libstdc++-v3/python/libstdcxx/v6/printers.py index bd4289c1c62..5a3dcbd13f9 100644 --- a/libstdc++-v3/python/libstdcxx/v6/printers.py +++ b/libstdc++-v3/python/libstdcxx/v6/printers.py @@ -2246,12 +2246,7 @@ def build_libstdcxx_dictionary (): libstdcxx_printer.add('std::__debug::map', StdMapPrinter) libstdcxx_printer.add('std::__debug::multimap', StdMapPrinter) libstdcxx_printer.add('std::__debug::multiset', StdSetPrinter) - libstdcxx_printer.add('std::__debug::priority_queue', - StdStackOrQueuePrinter) - libstdcxx_printer.add('std::__debug::queue', StdStackOrQueuePrinter) libstdcxx_printer.add('std::__debug::set', StdSetPrinter) - libstdcxx_printer.add('std::__debug::stack', StdStackOrQueuePrinter) - libstdcxx_printer.add('std::__debug::unique_ptr', UniquePointerPrinter) libstdcxx_printer.add('std::__debug::vector', StdVectorPrinter) # These are the TR1 and C++11 printers. |
