mirror of
https://github.com/dlang/phobos.git
synced 2025-04-28 06:00:35 +03:00
Brace style fixed.
This commit is contained in:
parent
93a8054a9e
commit
a0b74aab18
1 changed files with 4 additions and 2 deletions
|
@ -6975,7 +6975,8 @@ private static bool isRegionalIndicator(dchar ch) @safe pure @nogc nothrow
|
||||||
|
|
||||||
// Our grapheme decoder is a state machine, this is list of all possible
|
// Our grapheme decoder is a state machine, this is list of all possible
|
||||||
// states before each code point.
|
// states before each code point.
|
||||||
private enum GraphemeState {
|
private enum GraphemeState
|
||||||
|
{
|
||||||
Start,
|
Start,
|
||||||
CR,
|
CR,
|
||||||
RI,
|
RI,
|
||||||
|
@ -6989,7 +6990,8 @@ private enum GraphemeState {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Message values whether end of grapheme is reached
|
// Message values whether end of grapheme is reached
|
||||||
private enum TransformRes {
|
private enum TransformRes
|
||||||
|
{
|
||||||
// No, unless the source range ends here
|
// No, unless the source range ends here
|
||||||
// (GB2 - break at end of text, unless text is empty)
|
// (GB2 - break at end of text, unless text is empty)
|
||||||
goOn,
|
goOn,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue