Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion sphinx_immaterial/apidoc/cpp/api_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ def get_spellings():
else:
yield spelling

return " ".join(get_spellings())
return " ".join(get_spellings()).replace(" :: ", "::")


def get_related_comments(decl: Cursor):
Expand Down Expand Up @@ -2344,6 +2344,7 @@ def _normalize_entity_requires(entity: CppApiEntity):
if _is_function(entity):
func_entity = cast(FunctionEntity, entity)
declaration = func_entity["declaration"]
declaration = _substitute_internal_type_names(config, declaration)
if replacements:
declaration = _apply_identifier_replacements(declaration, replacements)
if (
Expand Down