-
Notifications
You must be signed in to change notification settings - Fork 33
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
constexpr simplification #180
Conversation
1dfecbd
to
0efdfbe
Compare
Codecov Report
@@ Coverage Diff @@
## master #180 +/- ##
===========================================
- Coverage 100.00% 98.77% -1.23%
===========================================
Files 9 9
Lines 2285 2286 +1
===========================================
- Hits 2285 2258 -27
- Misses 0 28 +28 |
const auto p = builtin_uint128{x} * y; | ||
return {uint64_t(p >> 64), uint64_t(p)}; | ||
#pragma GCC diagnostic pop | ||
#elif defined(_MSC_VER) |
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.
Why is this MSVC version removed?
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.
I think I decided it is not critical to have it fast on msvc.
No description provided.