Update tests/code_layout/doxygen_parser.py

This commit is contained in:
Nyall Dawson 2024-06-25 08:47:01 +10:00
parent 17cb0d5678
commit 77dfdfa9ee

View File

@ -276,7 +276,7 @@ class DoxygenParser():
break
for s in para.iter('xrefsect'):
if s.find('xreftitle') is not None and 'Deprecated' in s.find('xreftitle').text:
# can't have both deprecated and since, so if we've found deprecated then treat it as having satisified the "since" requirement too
# can't have both deprecated and since, so if we've found deprecated then treat it as having satisfied the "since" requirement too
found_version_added = True
break