Remove braces so different clang-formats output the same.

This commit is contained in:
Jorge Acereda 2020-05-30 09:32:50 +02:00
parent 543a90ffa0
commit 5db1f0101f

View File

@ -87,7 +87,8 @@ String Pattern_internal_classend(PatternMatchState *ms, String p) {
} while (*p != ']');
return p + 1;
}
default: { return p; }
default:
return p;
}
}