Try fix CI

This commit is contained in:
Volodymyr Shymanskyy
2022-08-30 12:48:53 +03:00
parent 17fc9b4728
commit 7a8eec8fae
+5 -1
View File
@@ -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