mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-26 09:23:48 +00:00
Allow configuring of MAX_CAPTURE_GROUPS for n > 10
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
package regex_common
|
||||
|
||||
// VM limitations
|
||||
MAX_CAPTURE_GROUPS :: 10
|
||||
MAX_CAPTURE_GROUPS :: max(#config(ODIN_REGEX_MAX_CAPTURE_GROUPS, 10), 10)
|
||||
MAX_PROGRAM_SIZE :: int(max(i16))
|
||||
MAX_CLASSES :: int(max(u8))
|
||||
|
||||
|
||||
Reference in New Issue
Block a user