summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2020-02-17 13:20:57 +0000
committerJonathan Wakely <jwakely@redhat.com>2020-02-17 13:20:57 +0000
commit4540ef781bcefffe779a8b31950ea737733f06a4 (patch)
treef184e0418c881ba5b22245164cd221df32d700d3
parentd6dfa3dafc0a69a84002f1c0be17a70b0996cc72 (diff)
downloadgcc-4540ef781bcefffe779a8b31950ea737733f06a4.tar.gz
libstdc++: Fix regression in libstdc++-prettyprinters/cxx20.cc
* python/libstdcxx/v6/printers.py (StdCmpCatPrinter.to_string): Update value for partial_ordering::unordered.
-rw-r--r--libstdc++-v3/ChangeLog3
-rw-r--r--libstdc++-v3/python/libstdcxx/v6/printers.py2
2 files changed, 4 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index c9660084179..9ae1e112aa8 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,5 +1,8 @@
2020-02-17 Jonathan Wakely <jwakely@redhat.com>
+ * python/libstdcxx/v6/printers.py (StdCmpCatPrinter.to_string): Update
+ value for partial_ordering::unordered.
+
* include/bits/iterator_concepts.h (indirectly_copyable_storable): Add
const-qualified expression variations.
* include/std/concepts (copyable): Likewise.
diff --git a/libstdc++-v3/python/libstdcxx/v6/printers.py b/libstdc++-v3/python/libstdcxx/v6/printers.py
index 7f69b0be9f1..e4da8dfe5b6 100644
--- a/libstdc++-v3/python/libstdcxx/v6/printers.py
+++ b/libstdc++-v3/python/libstdcxx/v6/printers.py
@@ -1435,7 +1435,7 @@ class StdCmpCatPrinter:
if self.typename == 'strong_ordering' and self.val == 0:
name = 'equal'
else:
- names = {-127:'unordered', -1:'less', 0:'equivalent', 1:'greater'}
+ names = {2:'unordered', -1:'less', 0:'equivalent', 1:'greater'}
name = names[int(self.val)]
return 'std::{}::{}'.format(self.typename, name)