mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Static functions cannot have const.
This commit is contained in:
parent
523b31a16a
commit
29394da7ed
1 changed files with 1 additions and 1 deletions
|
@ -639,7 +639,7 @@ enum EPickStart
|
|||
// Although String is a builtin type, this is a convenient way to attach methods to it.
|
||||
struct StringStruct native
|
||||
{
|
||||
native static vararg String Format(String fmt, ...) const;
|
||||
native static vararg String Format(String fmt, ...);
|
||||
native vararg void AppendFormat(String fmt, ...);
|
||||
|
||||
native void Replace(String pattern, String replacement);
|
||||
|
|
Loading…
Reference in a new issue