diff options
author | Jakob Lykke Andersen <Jakob@caput.dk> | 2022-03-27 10:41:25 +0200 |
---|---|---|
committer | Jakob Lykke Andersen <Jakob@caput.dk> | 2022-04-17 14:22:24 +0200 |
commit | a36c09a97f4abd83e9534aec4906495be5cbbdd2 (patch) | |
tree | 50b49c1b99d0ef275b2d29082fd39b385ae27da7 /sphinx/domains/cpp.py | |
parent | 2d2e0ac01a6594389eef267d04f53f1645f27bad (diff) | |
download | sphinx-git-a36c09a97f4abd83e9534aec4906495be5cbbdd2.tar.gz |
C++, use Itanium mangling for conditional expr
Diffstat (limited to 'sphinx/domains/cpp.py')
-rw-r--r-- | sphinx/domains/cpp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 9248a35e0..23df1f7dd 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -530,7 +530,7 @@ _id_operator_v2 = { '()': 'cl', '[]': 'ix', '.*': 'ds', # this one is not overloadable, but we need it for expressions - '?': 'cn', + '?': 'qu', } _id_operator_unary_v2 = { '++': 'pp_', |