aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/python
diff options
context:
space:
mode:
authorFrançois Dumont <fdumont@gcc.gnu.org>2017-05-10 20:40:28 +0000
committerFrançois Dumont <fdumont@gcc.gnu.org>2017-05-10 20:40:28 +0000
commit87c7063d68a79665ff480babc7ff06e6e2e0e1f8 (patch)
treebbe10c8f9c548671208b21f244bf7010aa5f542e /libstdc++-v3/python
parentdd54ca5649175043793ec22ee6fd568b004bb83f (diff)
downloadgcc-87c7063d68a79665ff480babc7ff06e6e2e0e1f8.zip
gcc-87c7063d68a79665ff480babc7ff06e6e2e0e1f8.tar.gz
gcc-87c7063d68a79665ff480babc7ff06e6e2e0e1f8.tar.bz2
Bump version namespace.
2017-05-10 François Dumont <fdumont@gcc.gnu.org> Bump version namespace. * config/abi/pre/gnu-versioned-namespace.ver: Bump version namespace from __7 to __8. Bump GLIBCXX_7.0 to GLIBCXX_8.0. * acinclude.m4 (libtool_VERSION): Bump to 8:0:0. * include/bits/c++config: Adapt. * include/bits/regex.h: Adapt. * include/experimental/bits/fs_fwd.h: Adapt. * include/experimental/bits/lfts_config.h: Adapt. * include/std/variant: Adapt. * python/libstdcxx/v6/printers.py: Adapt. * testsuite/libstdc++-prettyprinters/48362.cc: Adapt. * include/bits/stl_tree.h (_Rb_tree_impl<>): Remove _Is_pod_comparator template parameter when version namespace is active. From-SVN: r247858
Diffstat (limited to 'libstdc++-v3/python')
-rw-r--r--libstdc++-v3/python/libstdcxx/v6/printers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/python/libstdcxx/v6/printers.py b/libstdc++-v3/python/libstdcxx/v6/printers.py
index a67b27a..8122cf8 100644
--- a/libstdc++-v3/python/libstdcxx/v6/printers.py
+++ b/libstdc++-v3/python/libstdcxx/v6/printers.py
@@ -99,7 +99,7 @@ def find_type(orig, name):
raise ValueError("Cannot find type %s::%s" % (str(orig), name))
typ = field.type
-_versioned_namespace = '__7::'
+_versioned_namespace = '__8::'
# Test if a type is a given template instantiation.
def is_specialization_of(type, template_name):