-
Notifications
You must be signed in to change notification settings - Fork 713
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
Do not assume that std::int64_t is identical to long int #1488
Do not assume that std::int64_t is identical to long int #1488
Conversation
a09e0a0
to
dafb3e1
Compare
@luqun has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
1 similar comment
@luqun has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
@laurynas-biveinis , could you rebase this PR? |
- printf int64_t values with PRId64 - Specify std::make_pair template arguments. Alternatively we could introduce a constexpr variable for uninitialized opids. This fixes new macOS build regressions, only one example per error class: sql/xa.cc:382:11: error: format specifies type 'long' but the argument has type 'long long' [-Werror,-Wformat] info.smallest_lwm_opid.first, info.smallest_lwm_opid.second, ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ storage/innobase/trx/trx0sys.cc:271:16: error: invalid operands to binary expression ('const std::pair<int64_t, int64_t>' (aka 'const pair<long long, long long>') and 'pair<typename __unwrap_ref_decay<long>::type, typename __unwrap_ref_decay<long>::type>' (aka 'pair<long, long>')) if (lwm_opid != std::make_pair(-1L, -1L)) { ~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~ Squash with 5f045b4
dafb3e1
to
3a7c548
Compare
@laurynas-biveinis has updated the pull request. You must reimport the pull request before landing. |
@luqun , rebased |
@luqun has imported this pull request. If you are a Meta employee, you can view this diff on Phabricator. |
This pull request has been merged in 2dc2bdd. |
constexpr variable for uninitialized opids.
This fixes new macOS build regressions, only one example per error class:
sql/xa.cc:382:11: error: format specifies type 'long' but the argument has type 'long long' [-Werror,-Wformat]
info.smallest_lwm_opid.first, info.smallest_lwm_opid.second,
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
storage/innobase/trx/trx0sys.cc:271:16: error: invalid operands to binary expression ('const std::pair<int64_t, int64_t>' (aka 'const pair<long long, long long>') and 'pair<typename __unwrap_ref_decay::type, typename __unwrap_ref_decay::type>' (aka 'pair<long, long>'))
if (lwm_opid != std::make_pair(-1L, -1L)) {
~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~
Squash with 5f045b4