[tcljava-dev] patch to fix C++ commenting
Brought to you by:
mdejong
From: Kenneth H. C. <tc...@at...> - 2003-05-29 17:43:51
|
Hardly worth a post, but my build of 1.3.0 failed due to a c++ comment in a .c file. This patch removes it. --- ./src/native/javaInterp.c~ Fri May 23 11:43:59 2003 +++ ./src/native/javaInterp.c Fri May 23 11:58:26 2003 @@ -1864,7 +1864,7 @@ Tcl_WrongNumArgs(interp, 2, objv, "obj"); return TCL_ERROR; } - // refCount - 1 to account for the ref added for this method + /* refCount - 1 to account for the ref added for this method */ Tcl_SetObjResult(interp, Tcl_NewIntObj(objv[2]->refCount - 1)); break; } |