mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
LibRegex: Allow the SingleMatch flag to be used as a PosixFlag
This commit is contained in:
parent
0c24522635
commit
5bf2cce839
Notes:
sideshowbarker
2024-07-17 07:48:42 +09:00
Author: https://github.com/water-ghosts Commit: https://github.com/SerenityOS/serenity/commit/5bf2cce839 Pull-request: https://github.com/SerenityOS/serenity/pull/16584 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/gmta Reviewed-by: https://github.com/kleinesfilmroellchen Reviewed-by: https://github.com/rtobar
1 changed files with 1 additions and 0 deletions
|
@ -53,6 +53,7 @@ enum class PosixFlags : FlagsUnderlyingType {
|
|||
SkipSubExprResults = (FlagsUnderlyingType)AllFlags::SkipSubExprResults,
|
||||
SkipTrimEmptyMatches = (FlagsUnderlyingType)AllFlags::SkipTrimEmptyMatches,
|
||||
Multiline = (FlagsUnderlyingType)AllFlags::Multiline,
|
||||
SingleMatch = (FlagsUnderlyingType)AllFlags::SingleMatch,
|
||||
StringCopyMatches = (FlagsUnderlyingType)AllFlags::StringCopyMatches,
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue