From ade786cd55a276dc601b35210678f6d32fa664bf Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 31 Jan 2025 12:59:06 +0100 Subject: [PATCH] Also strip _ALWAYS_INLINE_ from the docs. --- tools/doc/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/doc/main.cpp b/tools/doc/main.cpp index a6167a0..fd0203d 100644 --- a/tools/doc/main.cpp +++ b/tools/doc/main.cpp @@ -113,6 +113,8 @@ List process_classes_and_structs(const List &list) { s = s.replace(" _FORCE_INLINE_ ", " "); s = s.replace("_FORCE_INLINE_ ", ""); + s = s.replace(" _ALWAYS_INLINE_ ", " "); + s = s.replace("_ALWAYS_INLINE_ ", ""); s = s.replace(" _NO_DISCARD_CLASS_ ", " "); s = s.replace(" inline ", " "); s = s.replace("inline ", "");