mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-15 13:40:48 +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;
|
end;
|
||||||
|
|
||||||
TMaskFailCause = (
|
TMaskFailCause = (
|
||||||
mfcSuccess=0,
|
mfcSuccess,
|
||||||
mfcMatchStringExhausted=1,
|
mfcMatchStringExhausted,
|
||||||
mfcMaskExhausted=2,
|
mfcMaskExhausted,
|
||||||
mfcMaskNotMatch=3,
|
mfcMaskNotMatch,
|
||||||
mfcUnexpectedEnd=4
|
mfcUnexpectedEnd
|
||||||
);
|
);
|
||||||
|
|
||||||
TMaskOpCode=(mocAnyChar, //treat ? as a wildcard to match exactly one char
|
TMaskOpCode=(mocAnyChar, //treat ? as a wildcard to match exactly one char
|
||||||
|
Loading…
Reference in New Issue
Block a user