-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[gardening][lib/Basic][C++11] Replace typedef
with using
#15169
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
lib/AST/ASTContext.cpp
Outdated
typedef std::pair<DeclContext *, AbstractFunctionDecl *> | ||
ObjCUnsatisfiedOptReq; | ||
/// An unsatisfied, optional @objc requirement in a protocol conformance. | ||
using ObjCUnsatisfiedOptReq = std::pair<DeclContext *, AbstractFunctionDecl *>; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The indentation changes are due to git clang-format
.
@swift-ci smoke test |
typedef
with using
typedef
with using
I guess |
I intend to replace most |
5879781
to
958c5ea
Compare
typedef
with using
typedef
with using
Just narrowed the scope to only lib/Basic now. |
958c5ea
to
eaf33e0
Compare
@swift-ci smoke test |
Okay, thanks! |
This is a series of pull requests attempting to replace
typedef
s withusing
s.