Removed semicolon from macro

This commit is contained in:
Miodrag Milanovic 2021-11-05 09:57:37 +01:00
parent 11e58d5415
commit d67eb0eb1c
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ extern Tcl_Obj *Tcl_ObjSetVar2(Tcl_Interp *interp, Tcl_Obj *part1Ptr, Tcl_Obj *p
#endif
#if __cplusplus >= 201703L
# define YS_MAYBE_UNUSED [[maybe_unused]];
# define YS_MAYBE_UNUSED [[maybe_unused]]
#elif defined(__GNUC__) || defined(__clang__)
# define YS_MAYBE_UNUSED __attribute__((__unused__))
#else