Skip to content

Commit

Permalink
Fix a type issue for windows (#4486)
Browse files Browse the repository at this point in the history
  • Loading branch information
kratman authored Oct 3, 2024
1 parent 444ecc1 commit 2ca16ac
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/pybamm/solvers/c_solvers/idaklu/observe.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@
#include <vector>
using std::vector;

#if defined(_MSC_VER)
#include <BaseTsd.h>
typedef SSIZE_T ssize_t;
#endif

/**
* @brief Observe and Hermite interpolate ND variables
*/
Expand Down

0 comments on commit 2ca16ac

Please sign in to comment.