Skip to content

Commit

Permalink
avoid need for char16_t
Browse files Browse the repository at this point in the history
  • Loading branch information
jgillis committed Jul 28, 2024
1 parent 918d19d commit 9e0a77c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
using: "composite"
steps:
- run: |
curl -OL https://github.com/casadi/mockups/releases/download/v83/mockups_${{ inputs.tag }}_Release.zip
curl -OL https://github.com/casadi/mockups/releases/download/v84/mockups_${{ inputs.tag }}_Release.zip
unzip mockups_${{ inputs.tag }}_Release.zip -d mockups
ls mockups
ls mockups/cmake
Expand Down
2 changes: 1 addition & 1 deletion matlab/include/matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ typedef enum {
} mxClassID;

typedef bool mxLogical;
typedef char16_t mxChar;
typedef uint16_t mxChar;

#include <matrix_versions.h>

Expand Down

0 comments on commit 9e0a77c

Please sign in to comment.