Skip to content

Commit

Permalink
Merge branch 'main' into draw_rework
Browse files Browse the repository at this point in the history
  • Loading branch information
starseeker committed Jun 30, 2023
2 parents e970d31 + f5de8fe commit e88ce8f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/external/Creo/shim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
/* Functions */
extern "C" int ProArrayAlloc(int,int,int,void**) {return 0;}
extern "C" int ProArrayFree(void**) {return 0;}
extern "C" int ProArrayObjectAdd(ProArray *, int, int, void*) {return 0;};
extern "C" int ProArrayObjectAdd(ProArray *, int, int, void*) {return 0;}
extern "C" int ProArraySizeGet(ProArray,int*) {return 0;}
extern "C" int ProAsmcompMdlGet(ProFeature*,void**) {return 0;}
extern "C" int ProAsmcompMdlMdlnameGet(ProFeature*,int*,wchar_t*) {return 0;}
Expand Down
2 changes: 1 addition & 1 deletion src/other/ext/stepcode/src/express/expscan.l
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
*
*/
#include <ctype.h>
#ifndef isascii
#if !defined(isascii) && defined(__isascii)
# define isascii __isascii
#endif
#include "express/basic.h"
Expand Down
2 changes: 1 addition & 1 deletion src/other/ext/stepcode/src/express/generated/expscan.c
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
* BPR 2.1 alpha
* */
#include <ctype.h>
#ifndef isascii
#if !defined(isascii) && defined(__isascii)
# define isascii __isascii
#endif
#include "express/basic.h"
Expand Down
2 changes: 1 addition & 1 deletion src/other/tkhtml/src/htmltcl.c
Original file line number Diff line number Diff line change
Expand Up @@ -859,7 +859,7 @@ HtmlCallbackLayout (HtmlTree *pTree, HtmlNode *pNode)
}

static int
setSnapshotId (HtmlTree *pTree, HtmlNode *pNode, void *)
setSnapshotId (HtmlTree *pTree, HtmlNode *pNode, void *d)
{
pNode->iSnapshot = pTree->iLastSnapshotId;
return HTML_WALK_DESCEND;
Expand Down

0 comments on commit e88ce8f

Please sign in to comment.