Skip to content

Commit 6d49c8c

Browse files
author
izaid
committed
Removed float16 overloads from assignment
1 parent 432e74f commit 6d49c8c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

dynd/src/assign.cpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ using namespace dynd;
2020
PYDYND_API void assign_init()
2121
{
2222
typedef type_id_sequence<bool_id, int8_id, int16_id, int32_id, int64_id, int128_id, uint8_id, uint16_id, uint32_id,
23-
uint64_id, uint128_id, float16_id, float32_id, float64_id, complex_float32_id,
24-
complex_float64_id, bytes_id, fixed_bytes_id, string_id, fixed_string_id, option_id, type_id,
25-
tuple_id, struct_id, fixed_dim_id, var_dim_id>
23+
uint64_id, uint128_id, float32_id, float64_id, complex_float32_id, complex_float64_id,
24+
bytes_id, fixed_bytes_id, string_id, fixed_string_id, option_id, type_id, tuple_id,
25+
struct_id, fixed_dim_id, var_dim_id>
2626
type_ids;
2727

2828
typedef type_sequence<bool, int8_t, int16_t, int32_t, int64_t, int128, uint8_t, uint16_t, uint32_t, uint64_t, uint128,
29-
float16, float, double, dynd::complex<float>, dynd::complex<double>, bytes,
30-
ndt::fixed_bytes_type, dynd::string, ndt::fixed_string_type, ndt::option_type, ndt::type,
31-
ndt::tuple_type, ndt::struct_type, ndt::fixed_dim_type, ndt::var_dim_type>
29+
float, double, dynd::complex<float>, dynd::complex<double>, bytes, ndt::fixed_bytes_type,
30+
dynd::string, ndt::fixed_string_type, ndt::option_type, ndt::type, ndt::tuple_type,
31+
ndt::struct_type, ndt::fixed_dim_type, ndt::var_dim_type>
3232
types;
3333

3434
PyDateTime_IMPORT;

0 commit comments

Comments
 (0)