-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
feature/spaceship: Clause 30: Regex #1145
feature/spaceship: Clause 30: Regex #1145
Conversation
Fix bug uncovered by fixed tests.
It's going to feel so good once that compiler bug is resolved. |
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.
Only one "real" comment for the extraneous ;
- I think the rest of these are style comments and me asking if anyone has filed an LWG issue that I will probably be the one to file.
inline constexpr bool is_pair<std::pair<A, B>> = true; // TRANSITION, std::pair spaceship not yet implemented | ||
struct OrderedChar { | ||
OrderedChar() = default; | ||
OrderedChar(const char c) : c(c){}; |
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.
OrderedChar(const char c) : c(c){}; | |
OrderedChar(const char c) : c(c){} |
Co-authored-by: Casey Carter <Casey@Carter.net>
de36ed3
to
8033dc1
Compare
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Thanks for implementing this fleet of spaceship operators! 🛸 🛸 🛸 |
Implement changes required for regex in p1614r2.
Currently I don't rely on comparison operator rewrites because of VSO-900973.