mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-22 11:19:26 +02:00
LazUtils: Masks: TMaskFailCause enums do not need to be indexed.
This commit is contained in:
parent
f36b66d291
commit
742a4e8299
@ -46,11 +46,11 @@ type
|
||||
end;
|
||||
|
||||
TMaskFailCause = (
|
||||
mfcSuccess=0,
|
||||
mfcMatchStringExhausted=1,
|
||||
mfcMaskExhausted=2,
|
||||
mfcMaskNotMatch=3,
|
||||
mfcUnexpectedEnd=4
|
||||
mfcSuccess,
|
||||
mfcMatchStringExhausted,
|
||||
mfcMaskExhausted,
|
||||
mfcMaskNotMatch,
|
||||
mfcUnexpectedEnd
|
||||
);
|
||||
|
||||
TMaskOpCode=(mocAnyChar, //treat ? as a wildcard to match exactly one char
|
||||
|
Loading…
Reference in New Issue
Block a user