Commit d2e1dca4 authored by Denis Filatov's avatar Denis Filatov
Browse files

final version for approval

parent 65955d90
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ def parseInlineComments(content:str, indent=None):
def parseDoxyComments(content:str):
	# keep only '--! ' and /** */ comments
	# convert '--! ' comments to C-style
	content = RE_DOXY_ASN_COMMENTS.sub(r'/** *\g<1>*/', content)
	content = RE_DOXY_ASN_COMMENTS.sub('/** *\g<1>*/', content)
	ret = ''
	for m in RE_DOXY_C_COMMENTS.finditer(content):
		ret += RE_STRIPSTAR.sub('', m.group(1))