From f3d9828abd07280eb06b77c9236c3d9dc257a109 Mon Sep 17 00:00:00 2001 From: Mateusz Pusz Date: Sun, 6 Sep 2020 23:54:14 +0200 Subject: [PATCH] constinit added to C++ keywords in docs --- docs/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index e694cdb9..bb94e896 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -189,7 +189,7 @@ class MyCppLexer(MyCFamilyLexer): 'try', 'typeid', 'typename', 'using', 'virtual', 'constexpr', 'nullptr', 'decltype', 'thread_local', 'alignas', 'alignof', 'static_assert', 'noexcept', 'override', - 'final', 'constinit', 'consteval', 'concept', 'co_await', + 'final', 'constinit', 'consteval', 'constinit', 'concept', 'co_await', 'co_return', 'co_yield', 'requires', 'import', 'module'), suffix=r'\b'), Keyword), (r'char(16_t|32_t|8_t)\b', Keyword.Type), (r'(class)(\s+)', bygroups(Keyword, Text), 'classname'),