Commit 0f8a9972 by Ralf W. Grosse-Kunstleve Committed by Copybara-Service

Change pybind11_abseil `type_caster` `const_name` `Span` to `Sequence`.

PiperOrigin-RevId: 617961866
parent c873afb4
...@@ -494,7 +494,7 @@ struct type_caster<absl::Span<T>> { ...@@ -494,7 +494,7 @@ struct type_caster<absl::Span<T>> {
} }
static constexpr auto name = static constexpr auto name =
const_name("Span[") + make_caster<T>::name + const_name("]"); const_name("Sequence[") + make_caster<T>::name + const_name("]");
// We do not allow moving because 1) spans are super lightweight, so there's // We do not allow moving because 1) spans are super lightweight, so there's
// no advantage to moving and 2) the span cannot exist without the caster, // no advantage to moving and 2) the span cannot exist without the caster,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment