Skip to content

Commit

Permalink
Revert "Add struct handle_type_name<...> specializations for `objec…
Browse files Browse the repository at this point in the history
…t`, `list`, etc."

This reverts commit 76b4a34.
  • Loading branch information
Ralf W. Grosse-Kunstleve committed Oct 19, 2023
1 parent 76b4a34 commit 794d97e
Showing 1 changed file with 0 additions and 32 deletions.
32 changes: 0 additions & 32 deletions include/pybind11/cast.h
Original file line number Diff line number Diff line change
Expand Up @@ -874,38 +874,6 @@ struct handle_type_name {
static constexpr auto name = const_name<T>();
};
template <>
struct handle_type_name<object> {
static constexpr auto name = const_name("object");
};
template <>
struct handle_type_name<list> {
static constexpr auto name = const_name("list");
};
template <>
struct handle_type_name<dict> {
static constexpr auto name = const_name("dict");
};
template <>
struct handle_type_name<set> {
static constexpr auto name = const_name("set");
};
template <>
struct handle_type_name<frozenset> {
static constexpr auto name = const_name("frozenset");
};
template <>
struct handle_type_name<anyset> {
static constexpr auto name = const_name("anyset");
};
template <>
struct handle_type_name<str> {
static constexpr auto name = const_name("str");
};
template <>
struct handle_type_name<tuple> {
static constexpr auto name = const_name("tuple");
};
template <>
struct handle_type_name<bool_> {
static constexpr auto name = const_name("bool");
};
Expand Down

0 comments on commit 794d97e

Please sign in to comment.