Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
clang-tools-extra/clangd/QueryDriverDatabase.cpp | ||
---|---|---|
278 | We require the separators to be exactly \ and / for the regex to be correct, so I'd rather keep the literals here. (Call me paranoid, but I grew up on a system with : for separators...) |
nit: maybe extract llvm::sys::path::is_separator('/') && llvm::sys::path::is_separator('\\') into a bool PlatformIsSlashInsensitive ?