This is an archive of the discontinued LLVM Phabricator instance.

[libc++] Qualifies ptrdiff_t and max_align_t.
ClosedPublic

Authored by Mordante on Mar 21 2023, 11:07 AM.

Details

Reviewers
ldionne
Group Reviewers
Restricted Project
Commits
rGd868135691bb: [libc++] Qualifies ptrdiff_t and max_align_t.
Summary

This has been done using the following commands

find libcxx/test -type f -exec perl -pi -e 's|^([^/]+?)((?<!::)ptrdiff_t)|\1std::\2|' \{} \;
find libcxx/test -type f -exec perl -pi -e 's|^([^/]+?)((?<!::)max_align_t)|\1std::\2|' \{} \;

The std module doesn't export declarations in the global namespaace.,
This is a preparation for that module.

Diff Detail

Event Timeline

Mordante created this revision.Mar 21 2023, 11:07 AM
Herald added a project: Restricted Project. · View Herald TranscriptMar 21 2023, 11:07 AM
Mordante requested review of this revision.Mar 21 2023, 11:07 AM
Herald added a project: Restricted Project. · View Herald TranscriptMar 21 2023, 11:07 AM
Herald added a reviewer: Restricted Project. · View Herald Transcript
ldionne accepted this revision.Mar 22 2023, 9:07 AM
This revision is now accepted and ready to land.Mar 22 2023, 9:07 AM
This revision was landed with ongoing or failed builds.Mar 22 2023, 9:28 AM
This revision was automatically updated to reflect the committed changes.