From 28f26a429dafbcfe5e326d414f6e858a23163e37 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 13 Dec 2018 00:19:36 +0900 Subject: [PATCH] Add super method; CPPObject.get_index_text() --- sphinx/domains/cpp.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index abb209d79..ca5dcd7a7 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -6395,6 +6395,10 @@ class CPPObject(ObjectDescription): signode['first'] = (not self.names) # hmm, what is this about? self.state.document.note_explicit_target(signode) + def get_index_text(self, name): + # type: (unicode) -> unicode + raise NotImplementedError() + def parse_definition(self, parser): # type: (Any) -> Any raise NotImplementedError()