From d105ce778d83d69fcbec8a5ba63fe9ca8690aa9d Mon Sep 17 00:00:00 2001 From: Bara Date: Tue, 19 Feb 2019 17:21:17 +0100 Subject: [PATCH] Add missing semicolon Otherwise you'll get this error: regex.inc(182) : error 001: expected token: ";", but found "" [Example with latest sourcemod (1.10.6383) version](https://travis-ci.org/Bara/TroubleinTerroristTown/jobs/495529570#L640) --- plugins/include/regex.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/regex.inc b/plugins/include/regex.inc index 2b615201..451e7018 100644 --- a/plugins/include/regex.inc +++ b/plugins/include/regex.inc @@ -179,7 +179,7 @@ methodmap Regex < Handle // // @param match Match to get the offset of. Match starts at 0, and ends at MatchCount() -1 // @return Offset of the match in the string. - public native int MatchOffset(int match = 0) + public native int MatchOffset(int match = 0); }; /**