Static functions cannot have const.

This commit is contained in:
Major Cooke 2017-04-13 10:37:29 -05:00 committed by Christoph Oelckers
parent 523b31a16a
commit 29394da7ed
1 changed files with 1 additions and 1 deletions

View File

@ -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);