]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
libstdc++: Remove pretty printer committed by mistake
authorJonathan Wakely <jwakely@redhat.com>
Tue, 17 Aug 2021 13:29:53 +0000 (14:29 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 17 Aug 2021 13:31:21 +0000 (14:31 +0100)
The std::error_category printer wasn't meant to be part of the commit
adding std::error_code and std::error_condition printers.

Signed-off-by: Jonathan Wakely <jwakely@redhat.com>
libstdc++-v3/ChangeLog:

* python/libstdcxx/v6/printers.py (StdErrorCatPrinter): Remove.

libstdc++-v3/python/libstdcxx/v6/printers.py

index e027a69ded9dffbbe1c29f3ed9dc2675eaea982c..82d262de8c7a75084be10e157352665284683697 100644 (file)
@@ -1484,18 +1484,6 @@ class StdCmpCatPrinter:
             name = names[int(self.val)]
         return 'std::{}::{}'.format(self.typename, name)
 
-class StdErrorCatPrinter:
-    "Print an object derived from std::error_category"
-
-    def __init__ (self, typename, val):
-        self.val = val
-        self.typename = typename
-
-    def to_string (self):
-        gdb.set_convenience_variable('__cat', self.val)
-        name = gdb.parse_and_eval('$__cat->name()').string()
-        return 'error category = "{}"'.format(name)
-
 class StdErrorCodePrinter:
     "Print a std::error_code or std::error_condition"