Skip to content

Commit f3cb4bb

Browse files
committed
Force doc8 check to run
1 parent 09a61e4 commit f3cb4bb

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

clang-tools-extra/docs/clang-tidy/checks/bugprone/unsafe-functions.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
bugprone-unsafe-functions
44
=========================
55

6+
67
Checks for functions that have safer, more secure replacements available, or
78
are considered deprecated due to design flaws.
89
The check heavily relies on the functions from the

llvm/utils/git/code-lint-helper.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,6 @@ def run_linter_tool(self, cpp_files: List[str], args: LintArgs) -> Optional[str]
256256
clean_output = self._clean_clang_tidy_output(proc.stdout.strip())
257257
return clean_output
258258

259-
260259
def _clean_clang_tidy_output(self, output: str) -> Optional[str]:
261260
if not output or output == "No relevant changes found.":
262261
return None
@@ -325,7 +324,6 @@ def run_linter_tool(self, doc_files: List[str], args: LintArgs) -> Optional[str]
325324

326325

327326
if __name__ == "__main__":
328-
329327
parser = argparse.ArgumentParser()
330328
parser.add_argument(
331329
"--token", type=str, required=True, help="GitHub authentication token"

0 commit comments

Comments
 (0)