We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e400014 commit 1068a80Copy full SHA for 1068a80
include/pybind11/detail/internals.h
@@ -511,7 +511,7 @@ struct local_internals {
511
}
512
#endif // defined(WITH_THREAD) && PYBIND11_INTERNALS_VERSION >= 4
513
#if PYBIND11_INTERNALS_VERSION == 5
514
- const char* function_capsule_name = strdup("pybind11_function_capsule");
+ const char *function_capsule_name = strdup("pybind11_function_capsule");
515
#endif
516
};
517
@@ -526,7 +526,7 @@ inline local_internals &get_local_internals() {
526
return *locals;
527
528
529
-inline const char* get_function_capsule_name() {
+inline const char *get_function_capsule_name() {
530
531
return get_local_internals().function_capsule_name;
532
#else
0 commit comments