Skip to content

Commit 1068a80

Browse files
style: pre-commit fixes
1 parent e400014 commit 1068a80

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/pybind11/detail/internals.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ struct local_internals {
511511
}
512512
#endif // defined(WITH_THREAD) && PYBIND11_INTERNALS_VERSION >= 4
513513
#if PYBIND11_INTERNALS_VERSION == 5
514-
const char* function_capsule_name = strdup("pybind11_function_capsule");
514+
const char *function_capsule_name = strdup("pybind11_function_capsule");
515515
#endif
516516
};
517517

@@ -526,7 +526,7 @@ inline local_internals &get_local_internals() {
526526
return *locals;
527527
}
528528

529-
inline const char* get_function_capsule_name() {
529+
inline const char *get_function_capsule_name() {
530530
#if PYBIND11_INTERNALS_VERSION == 5
531531
return get_local_internals().function_capsule_name;
532532
#else

0 commit comments

Comments
 (0)