This is an archive of the discontinued LLVM Phabricator instance.

[libc++] Qualifies uint32_t and friends.
ClosedPublic

Authored by Mordante on Mar 12 2023, 9:20 AM.

Details

Reviewers
ldionne
Group Reviewers
Restricted Project
Commits
rGbd5d0fee9bbb: [libc++] Qualifies uint32_t and friends.
Summary

This has been done using the following command

find libcxx/test -type f -exec perl -pi -e 's|^([^/]+?)((?<!::)(?<!::u)u?int(_[a-z]+)?[0-9]{1,2}_t)|\1std::\2|' \{} \;

And manually removed some false positives in std/depr/depr.c.headers.

Diff Detail

Event Timeline

Mordante created this revision.Mar 12 2023, 9:20 AM
Herald added a project: Restricted Project. · View Herald TranscriptMar 12 2023, 9:20 AM
Mordante published this revision for review.Mar 13 2023, 9:28 AM
Mordante added a reviewer: ldionne.
Herald added a project: Restricted Project. · View Herald TranscriptMar 13 2023, 9:28 AM
Herald added a reviewer: Restricted Project. · View Herald Transcript
ldionne accepted this revision.Mar 14 2023, 8:34 AM
This revision is now accepted and ready to land.Mar 14 2023, 8:34 AM
This revision was landed with ongoing or failed builds.Mar 14 2023, 9:29 AM
This revision was automatically updated to reflect the committed changes.