mirror of
https://github.com/pybind/pybind11.git
synced 2026-05-12 01:10:34 +00:00
Fixing git rebase -X theirs accident.
This commit is contained in:
committed by
Ralf W. Grosse-Kunstleve
parent
4ab4f36a92
commit
bc21158082
@@ -195,8 +195,7 @@ struct smart_holder {
|
||||
}
|
||||
|
||||
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 = const_cast<guarded_delete *>(std::get_deleter<guarded_delete>(vptr));
|
||||
auto vptr_del_ptr = std::get_deleter<guarded_delete>(vptr);
|
||||
if (vptr_del_ptr == nullptr) {
|
||||
throw std::runtime_error(
|
||||
"smart_holder::reset_vptr_deleter_armed_flag() called in an invalid context.");
|
||||
|
||||
Reference in New Issue
Block a user