mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 16:13:53 +00:00
Fixing git rebase -X theirs
accident.
This commit is contained in:
parent
4ab4f36a92
commit
bc21158082
@ -195,8 +195,7 @@ struct smart_holder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void reset_vptr_deleter_armed_flag(bool armed_flag) const {
|
void reset_vptr_deleter_armed_flag(bool armed_flag) const {
|
||||||
// The const_cast is only for certain compilers (Ubuntu 20 GCC 6.3.0 being one).
|
auto vptr_del_ptr = std::get_deleter<guarded_delete>(vptr);
|
||||||
auto vptr_del_ptr = const_cast<guarded_delete *>(std::get_deleter<guarded_delete>(vptr));
|
|
||||||
if (vptr_del_ptr == nullptr) {
|
if (vptr_del_ptr == nullptr) {
|
||||||
throw std::runtime_error(
|
throw std::runtime_error(
|
||||||
"smart_holder::reset_vptr_deleter_armed_flag() called in an invalid context.");
|
"smart_holder::reset_vptr_deleter_armed_flag() called in an invalid context.");
|
||||||
|
Loading…
Reference in New Issue
Block a user