aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libstdc++-v3/python/libstdcxx/v6/printers.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/libstdc++-v3/python/libstdcxx/v6/printers.py b/libstdc++-v3/python/libstdcxx/v6/printers.py
index e027a69..82d262d 100644
--- a/libstdc++-v3/python/libstdcxx/v6/printers.py
+++ b/libstdc++-v3/python/libstdcxx/v6/printers.py
@@ -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"