-
Notifications
You must be signed in to change notification settings - Fork 612
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
Reduce SmallVector and SmallString usage #7610
base: 2027
Are you sure you want to change the base?
Conversation
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.
By the way, what's the reason for reducing SmallVector
usage? Trying to shift towards using standard library stuff instead of LLVM stuff?
wpiutil/src/main/native/thirdparty/llvm/include/wpi/StringExtras.h
Outdated
Show resolved
Hide resolved
wpiutil/src/main/native/thirdparty/llvm/include/wpi/StringExtras.h
Outdated
Show resolved
Hide resolved
wpiutil/src/main/native/thirdparty/llvm/include/wpi/StringExtras.h
Outdated
Show resolved
Hide resolved
wpiutil/src/main/native/thirdparty/llvm/include/wpi/StringExtras.h
Outdated
Show resolved
Hide resolved
Yes, essentially, the goal is to use more standard library stuff unless SmallVector provides an obvious performance benefit (e.g. "hot" paths). |
a7e4b38
to
19da3a3
Compare
d0c9fed
to
621a94a
Compare
Still WIP