Skip to content

Commit aeeccda

Browse files
committed
[libc++] Fix style
Forgot to run `clang-format` before.
1 parent bb56342 commit aeeccda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libcxx/src/filesystem/path.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ path path::lexically_relative(const path& base) const {
292292
// return a path constructed with 'n' dot-dot elements, followed by the
293293
// elements of '*this' after the mismatch.
294294
path Result;
295-
constexpr size_t ElemSize = 2; // ".."
295+
constexpr size_t ElemSize = 2; // ".."
296296
constexpr size_t SeparatorSize = 1; // separator is always a single char
297297
Result.__reserve(ElemCount * (ElemSize + SeparatorSize) + SeparatorSize + PP.Path.size());
298298
while (ElemCount--)

0 commit comments

Comments
 (0)