diff options
author | Jakob Lykke Andersen <jakobandersen@users.noreply.github.com> | 2020-03-17 10:19:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-17 10:19:10 +0100 |
commit | 385f7ed40ef843db94ec33ad377aa87d63f27a27 (patch) | |
tree | 6e3801a11aef5de523f1bb86893fc40546a8fcde /sphinx/addnodes.py | |
parent | e6ffda38489cf341f0393ccfc02a40b570f6f404 (diff) | |
parent | f4d0099f2eb550d4782ce26f2fe072dde4156ea5 (diff) | |
download | sphinx-git-385f7ed40ef843db94ec33ad377aa87d63f27a27.tar.gz |
Merge pull request #7319 from jakobandersen/c_revamp
C domain rewrite
Diffstat (limited to 'sphinx/addnodes.py')
-rw-r--r-- | sphinx/addnodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index fa04e9344..847a6d715 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -119,7 +119,7 @@ class desc_signature_line(nodes.Part, nodes.Inline, nodes.FixedTextElement): It should only be used in a ``desc_signature`` with ``is_multiline`` set. Set ``add_permalink = True`` for the line that should get the permalink. """ - sphinx_cpp_tagname = '' + sphinx_line_type = '' # nodes to use within a desc_signature or desc_signature_line |