diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2016-01-22 23:15:00 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2016-01-22 23:15:00 +0000 |
commit | 672dde2b3e3b99cd1fb00315b8cfd7bdd4952ed6 (patch) | |
tree | 004cefa43a4a4adddce790017c4f5ff9ea2b0023 /clang/docs/tools/dump_ast_matchers.py | |
parent | bce5d9adce9d1964658c1ea2bf88de791a7e2523 (diff) | |
download | bcm5719-llvm-672dde2b3e3b99cd1fb00315b8cfd7bdd4952ed6.tar.gz bcm5719-llvm-672dde2b3e3b99cd1fb00315b8cfd7bdd4952ed6.zip |
Properly encode the < entity; it was missing the semicolon. Regenerating the AST matcher reference after fixing the issue. Thanks to Richard for noticing the issue and bringing it to my attention!
llvm-svn: 258579
Diffstat (limited to 'clang/docs/tools/dump_ast_matchers.py')
-rw-r--r-- | clang/docs/tools/dump_ast_matchers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/tools/dump_ast_matchers.py b/clang/docs/tools/dump_ast_matchers.py index 9c05eb888c0..ccbb616d7b5 100644 --- a/clang/docs/tools/dump_ast_matchers.py +++ b/clang/docs/tools/dump_ast_matchers.py @@ -47,7 +47,7 @@ def esc(text): except: doxygen_probes[url] = False if doxygen_probes[url]: - return r'Matcher<<a href="%s">%s</a>>' % (url, name) + return r'Matcher<<a href="%s">%s</a>>' % (url, name) else: return m.group(0) text = re.sub( |