Skip to content

Commit 5f93b18

Browse files
committed
fix windows build
Signed-off-by: Mark Halka <mark.halka2001@gmail.com>
1 parent e3c3a07 commit 5f93b18

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

cpp/csp/python/PyNumbaNode.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
namespace csp::python
2222
{
2323

24-
extern "C" CSPTYPESIMPL_EXPORT int64_t csp_numba_struct_enum_field_value( const void * struct_ptr, int64_t field_offset )
24+
extern "C" CSPIMPL_EXPORT int64_t csp_numba_struct_enum_field_value( const void * struct_ptr, int64_t field_offset )
2525
{
2626
// Struct metadata only gives us a byte offset here. Enum fields are native
2727
// CspEnum objects in memory, so numba reads must go through value().
@@ -30,7 +30,7 @@ extern "C" CSPTYPESIMPL_EXPORT int64_t csp_numba_struct_enum_field_value( const
3030
return enumField -> value();
3131
}
3232

33-
extern "C" CSPTYPESIMPL_EXPORT void csp_numba_struct_enum_field_set( void * struct_ptr, int64_t field_offset, int64_t value )
33+
extern "C" CSPIMPL_EXPORT void csp_numba_struct_enum_field_set( void * struct_ptr, int64_t field_offset, int64_t value )
3434
{
3535
// Rebuild the field from its existing enum meta rather than treating the
3636
// destination as a raw int64 slot.

0 commit comments

Comments
 (0)