[libcxx-commits] [libcxx] 35d4b48 - [libc++] Remove U+2009 THIN SPACE from comments in tests. NFC.
Arthur O'Dwyer via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Feb 14 07:32:14 PST 2022
Author: Arthur O'Dwyer
Date: 2022-02-14T10:30:36-05:00
New Revision: 35d4b4865443e584652841d548e12d7582da9243
URL: https://github.com/llvm/llvm-project/commit/35d4b4865443e584652841d548e12d7582da9243
DIFF: https://github.com/llvm/llvm-project/commit/35d4b4865443e584652841d548e12d7582da9243.diff
LOG: [libc++] Remove U+2009 THIN SPACE from comments in tests. NFC.
Added:
Modified:
libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp
Removed:
################################################################################
diff --git a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp
index e2cdb365dd88f..42de65e403391 100644
--- a/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp
+++ b/libcxx/test/std/input.output/filesystems/class.path/path.member/path.gen/lexically_normal.pass.cpp
@@ -74,9 +74,9 @@ int main(int, char**) {
// separator.
{"NO_ROOT_NAME_ON_LINUX", "NO_ROOT_NAME_ON_LINUX"},
// p3: Replace each directory-separator with a preferred-separator.
- // [ Note: The generic pathname grammar ([fs.path.generic]) defines
+ // [ Note: The generic pathname grammar ([fs.path.generic]) defines
// directory-separator as one or more slashes and preferred-separators.
- // — end note ]
+ // — end note ]
{"/", "/"},
{"//", "/"},
{"///", "/"},
@@ -107,8 +107,8 @@ int main(int, char**) {
{"foo/bar/./..", "foo/"},
{"foo/bar/./../", "foo/"},
// p6: If there is a root-directory, remove all dot-dot filenames and any
- // directory-separators immediately following them. [ Note: These dot-dot
- // filenames attempt to refer to nonexistent parent directories. — end note ]
+ // directory-separators immediately following them. [ Note: These dot-dot
+ // filenames attempt to refer to nonexistent parent directories. — end note ]
{"/..", "/"},
{"/../", "/"},
{"/foo/../..", "/"},
More information about the libcxx-commits
mailing list