mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-17 15:02:24 +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: 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,
|
SkipSubExprResults = (FlagsUnderlyingType)AllFlags::SkipSubExprResults,
|
||||||
SkipTrimEmptyMatches = (FlagsUnderlyingType)AllFlags::SkipTrimEmptyMatches,
|
SkipTrimEmptyMatches = (FlagsUnderlyingType)AllFlags::SkipTrimEmptyMatches,
|
||||||
Multiline = (FlagsUnderlyingType)AllFlags::Multiline,
|
Multiline = (FlagsUnderlyingType)AllFlags::Multiline,
|
||||||
|
SingleMatch = (FlagsUnderlyingType)AllFlags::SingleMatch,
|
||||||
StringCopyMatches = (FlagsUnderlyingType)AllFlags::StringCopyMatches,
|
StringCopyMatches = (FlagsUnderlyingType)AllFlags::StringCopyMatches,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue