Commit 0055cde6 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Make clang+gcc happy

parent 5f193e20
...@@ -108,7 +108,7 @@ void BoxedCode::dealloc(Box* b) noexcept { ...@@ -108,7 +108,7 @@ void BoxedCode::dealloc(Box* b) noexcept {
Py_XDECREF(o->name); Py_XDECREF(o->name);
Py_XDECREF(o->_doc); Py_XDECREF(o->_doc);
o->source.std::remove_reference<decltype(o->source)>::type::~type(); o->source.reset(nullptr);
o->cls->tp_free(o); o->cls->tp_free(o);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment