[PATCH] D53016: [clangd] Mark colon as a safe character when percent-encoding.
Sam McCall via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Oct 9 02:58:31 PDT 2018
sammccall accepted this revision.
sammccall added inline comments.
This revision is now accepted and ready to land.
================
Comment at: clangd/URI.cpp:94
case '/': // '/' is only reserved when parsing.
+ case ':':
return false;
----------------
add a comment: ':' is only reserved in relative URI paths, which we never produce
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D53016
More information about the cfe-commits
mailing list