This is an archive of the discontinued LLVM Phabricator instance.

[libc++] Fix vector spacing error
ClosedPublic

Authored by gAlfonso-bit on Jul 23 2021, 11:45 AM.

Details

Reviewers
ldionne
Group Reviewers
Restricted Project
Restricted Project
Commits
rG1e1b5706c3f5: [libc++] Fix spacing in <vector>. NFCI.
Summary

"2*cap" should be "2 * cap".

Diff Detail

Event Timeline

gAlfonso-bit requested review of this revision.Jul 23 2021, 11:45 AM
gAlfonso-bit created this revision.
Herald added a project: Restricted Project. · View Herald TranscriptJul 23 2021, 11:45 AM
Herald added a reviewer: Restricted Project. · View Herald Transcript
ldionne accepted this revision.Jul 23 2021, 11:49 AM
ldionne added a subscriber: ldionne.

Do you need someone to commit this for you?

This revision is now accepted and ready to land.Jul 23 2021, 11:49 AM

Formatted entire file with clang-tidy

@ldionne can this please land

We can't reformat the whole file, of course; but I've gone ahead and landed the original 2*__cap changes for you.

This revision was automatically updated to reflect the committed changes.

We can't reformat the whole file, of course; but I've gone ahead and landed the original 2*__cap changes for you.

Thanks Arthur.