Using the correct cast instead of static_cast#155
Conversation
ghost
referenced
this pull request
May 21, 2014
Summary: Per request from @nkg-, temporarily print thread ID when a thread terminates. It is a temp solution as we try to minimized stderr messages. Test Plan: env_test Reviewers: haobo, igor, dhruba Reviewed By: igor CC: nkg-, leveldb Differential Revision: https://reviews.facebook.net/D18753
Author
|
my bad, ci failed with gcc. |
Author
|
It looks like a platform-dependent problem. Under the Linux, rocksdb works fine without this patch, while under the OSX not. And I should post here what the travis-ci complains with this patch: Closing it. |
Nazgolze
pushed a commit
to Nazgolze/rocksdb-1
that referenced
this pull request
Sep 21, 2021
BusyJay
pushed a commit
to BusyJay/rocksdb
that referenced
this pull request
Jul 25, 2022
Summary: Fix missing check for openssl in db_bench. Test Plan: build without openssl Signed-off-by: Yi Wu <yiwu@pingcap.com> Signed-off-by: tabokie <xy.tao@outlook.com>
This pull request was closed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
clang won't compile with static_cast in bd1105a#diff-5b717965879a622d11268aaf03fb19c8R1518 .
In fact replacing
static_castwithreinterpret_castworks.