Skip to content

Commit 08f946a

Browse files
InvincibleRMCpre-commit-ci[bot]rwgk
authored
fix: add guard for GCC <10.3 on C++20 (#5205)
* Update CI * update define guard * style: pre-commit fixes * updated define guard * style: pre-commit fixes * update guard * testing new guards * update guards * surely this time * style: pre-commit fixes * Define PYBIND11_TYPING_H_HAS_STRING_LITERAL to avoid repeating a complex expression. --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Ralf W. Grosse-Kunstleve <[email protected]>
1 parent e0f9e77 commit 08f946a

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,9 @@ jobs:
501501
- { gcc: 7, std: 17 }
502502
- { gcc: 8, std: 14 }
503503
- { gcc: 8, std: 17 }
504+
- { gcc: 9, std: 20 }
504505
- { gcc: 10, std: 17 }
506+
- { gcc: 10, std: 20 }
505507
- { gcc: 11, std: 20 }
506508
- { gcc: 12, std: 20 }
507509
- { gcc: 13, std: 20 }

include/pybind11/typing.h

+5-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,10 @@ class Never : public none {
9898
using none::none;
9999
};
100100

101-
#if defined(__cpp_nontype_template_parameter_class)
101+
#if defined(__cpp_nontype_template_parameter_class) \
102+
&& (/* See #5201 */ !defined(__GNUC__) \
103+
|| (__GNUC__ > 10 || (__GNUC__ == 10 && __GNUC_MINOR__ >= 3)))
104+
# define PYBIND11_TYPING_H_HAS_STRING_LITERAL
102105
template <size_t N>
103106
struct StringLiteral {
104107
constexpr StringLiteral(const char (&str)[N]) { std::copy_n(str, N, name); }
@@ -222,7 +225,7 @@ struct handle_type_name<typing::Never> {
222225
static constexpr auto name = const_name("Never");
223226
};
224227

225-
#if defined(__cpp_nontype_template_parameter_class)
228+
#if defined(PYBIND11_TYPING_H_HAS_STRING_LITERAL)
226229
template <typing::StringLiteral... Literals>
227230
struct handle_type_name<typing::Literal<Literals...>> {
228231
static constexpr auto name = const_name("Literal[")

tests/test_pytypes.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void m_defs(py::module_ &m) {
109109

110110
} // namespace handle_from_move_only_type_with_operator_PyObject
111111

112-
#if defined(__cpp_nontype_template_parameter_class)
112+
#if defined(PYBIND11_TYPING_H_HAS_STRING_LITERAL)
113113
namespace literals {
114114
enum Color { RED = 0, BLUE = 1 };
115115

@@ -905,7 +905,7 @@ TEST_SUBMODULE(pytypes, m) {
905905
m.def("annotate_optional_to_object",
906906
[](py::typing::Optional<int> &o) -> py::object { return o; });
907907

908-
#if defined(__cpp_nontype_template_parameter_class)
908+
#if defined(PYBIND11_TYPING_H_HAS_STRING_LITERAL)
909909
py::enum_<literals::Color>(m, "Color")
910910
.value("RED", literals::Color::RED)
911911
.value("BLUE", literals::Color::BLUE);
@@ -919,8 +919,8 @@ TEST_SUBMODULE(pytypes, m) {
919919
m.def("annotate_listT_to_T",
920920
[](const py::typing::List<typevar::TypeVarT> &l) -> typevar::TypeVarT { return l[0]; });
921921
m.def("annotate_object_to_T", [](const py::object &o) -> typevar::TypeVarT { return o; });
922-
m.attr("if_defined__cpp_nontype_template_parameter_class") = true;
922+
m.attr("defined_PYBIND11_TYPING_H_HAS_STRING_LITERAL") = true;
923923
#else
924-
m.attr("if_defined__cpp_nontype_template_parameter_class") = false;
924+
m.attr("defined_PYBIND11_TYPING_H_HAS_STRING_LITERAL") = false;
925925
#endif
926926
}

tests/test_pytypes.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1025,7 +1025,7 @@ def test_optional_object_annotations(doc):
10251025

10261026

10271027
@pytest.mark.skipif(
1028-
not m.if_defined__cpp_nontype_template_parameter_class,
1028+
not m.defined_PYBIND11_TYPING_H_HAS_STRING_LITERAL,
10291029
reason="C++20 feature not available.",
10301030
)
10311031
def test_literal(doc):
@@ -1036,7 +1036,7 @@ def test_literal(doc):
10361036

10371037

10381038
@pytest.mark.skipif(
1039-
not m.if_defined__cpp_nontype_template_parameter_class,
1039+
not m.defined_PYBIND11_TYPING_H_HAS_STRING_LITERAL,
10401040
reason="C++20 feature not available.",
10411041
)
10421042
def test_typevar(doc):

0 commit comments

Comments
 (0)