Skip to content

Commit

Permalink
Try fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Aug 30, 2022
1 parent 17fc9b4 commit 7a8eec8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/wasm3.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ M3ImportContext, * IM3ImportContext;
// -------------------------------------------------------------------------------------------------------------------------------

# if defined(M3_IMPLEMENT_ERROR_STRINGS)
# define d_m3ErrorConst(LABEL, STRING) const M3Result m3Err_##LABEL = { STRING };
# if defined(__cplusplus)
# define d_m3ErrorConst(LABEL, STRING) extern const M3Result m3Err_##LABEL = { STRING };
# else
# define d_m3ErrorConst(LABEL, STRING) const M3Result m3Err_##LABEL = { STRING };
# endif
# else
# define d_m3ErrorConst(LABEL, STRING) extern const M3Result m3Err_##LABEL;
# endif
Expand Down

0 comments on commit 7a8eec8

Please sign in to comment.