RegularExpression: Make find() reentrant (thread safe)
RegularExpression::find() used to use shared global variables for every instance. This moves the variables into a private class on the stack instead.
Please register or sign in to comment
RegularExpression::find() used to use shared global variables for every instance. This moves the variables into a private class on the stack instead.