Skip to content

Commit 2c05531

Browse files
style: pre-commit fixes
1 parent c2e0043 commit 2c05531

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

include/pybind11/stl.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -326,9 +326,9 @@ struct list_caster {
326326

327327
bool convert_elements(handle seq, bool convert) {
328328
auto s = reinterpret_borrow<sequence>(seq);
329-
PYBIND11_WARNING_PUSH
329+
PYBIND11_WARNING_PUSH
330330
#if !defined(__clang__) && defined(__GNUC__) && __GNUC__ >= 13
331-
PYBIND11_WARNING_DISABLE_GCC("-Wmaybe-uninitialized")
331+
PYBIND11_WARNING_DISABLE_GCC("-Wmaybe-uninitialized")
332332
#endif
333333
value.clear();
334334
reserve_maybe(s, &value);
@@ -339,7 +339,7 @@ PYBIND11_WARNING_DISABLE_GCC("-Wmaybe-uninitialized")
339339
}
340340
value.push_back(cast_op<Value &&>(std::move(conv)));
341341
}
342-
PYBIND11_WARNING_POP
342+
PYBIND11_WARNING_POP
343343
return true;
344344
}
345345

0 commit comments

Comments
 (0)