Add missing semicolon

Otherwise you'll get this error:
regex.inc(182) : error 001: expected token: ";", but found "<newline>"

[Example with latest sourcemod (1.10.6383) version](https://travis-ci.org/Bara/TroubleinTerroristTown/jobs/495529570#L640)
This commit is contained in:
Bara 2019-02-19 17:21:17 +01:00 committed by GitHub
parent 653e9325fc
commit d105ce778d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
};
/**