Skip to content

Commit

Permalink
Add static qualifier to StaTclTypes.i helpers
Browse files Browse the repository at this point in the history
  • Loading branch information
povik committed Jul 30, 2024
1 parent f4fe607 commit 697231b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions tcl/StaTclTypes.i
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ tclListNetworkSet1(Tcl_Obj *const source,
return set;
}

StringSet *
static StringSet *
tclListSetConstChar(Tcl_Obj *const source,
Tcl_Interp *interp)
{
Expand All @@ -212,7 +212,7 @@ tclListSetConstChar(Tcl_Obj *const source,
return nullptr;
}

StringSeq *
static StringSeq *
tclListSeqConstChar(Tcl_Obj *const source,
Tcl_Interp *interp)
{
Expand All @@ -232,7 +232,7 @@ tclListSeqConstChar(Tcl_Obj *const source,
return nullptr;
}

StdStringSet *
static StdStringSet *
tclListSetStdString(Tcl_Obj *const source,
Tcl_Interp *interp)
{
Expand Down Expand Up @@ -317,7 +317,7 @@ setPtrTclList(SET_TYPE *set,

////////////////////////////////////////////////////////////////

void
static void
tclArgError(Tcl_Interp *interp,
const char *msg,
const char *arg)
Expand All @@ -330,7 +330,7 @@ tclArgError(Tcl_Interp *interp,
stringDelete(error);
}

void
static void
objectListNext(const char *list,
const char *type,
// Return values.
Expand Down Expand Up @@ -366,7 +366,7 @@ objectListNext(const char *list,
}
}

Tcl_Obj *
static Tcl_Obj *
tclArcDcalcArg(ArcDcalcArg &gate,
Tcl_Interp *interp)
{
Expand Down Expand Up @@ -405,7 +405,7 @@ tclArcDcalcArg(ArcDcalcArg &gate,
return list;
}

ArcDcalcArg
static ArcDcalcArg
arcDcalcArgTcl(Tcl_Obj *obj,
Tcl_Interp *interp)
{
Expand Down

0 comments on commit 697231b

Please sign in to comment.