Skip to content

Commit 23d5eac

Browse files
committed
Clang format.
1 parent eb05f97 commit 23d5eac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/pybind11/detail/smart_holder_type_casters.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ struct smart_holder_type_caster<std::unique_ptr<T const, D>>
10831083
cast(std::unique_ptr<T const, D> &&src, return_value_policy policy, handle parent) {
10841084
return smart_holder_type_caster<std::unique_ptr<T, D>>::cast(
10851085
std::unique_ptr<T, D>(const_cast<T *>(src.release()),
1086-
std::move(src.get_deleter())), // Const2Mutbl
1086+
std::move(src.get_deleter())), // Const2Mutbl
10871087
policy,
10881088
parent);
10891089
}

0 commit comments

Comments
 (0)