Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f39bc6e

Browse filesBrowse files
committed
Fix unused block error
1 parent 4da768f commit f39bc6e
Copy full SHA for f39bc6e

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Open diff view settings
Collapse file

‎ctregex.zig‎

Copy file name to clipboardExpand all lines: ctregex.zig
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,7 @@ const RegexParser = struct {
518518

519519
fn minLen(comptime self: SubExpr, comptime encoding: Encoding) usize {
520520
switch (self) {
521-
.atom => |atom| block: {
521+
.atom => |atom| {
522522
const atom_min_len = atom.data.minLen(encoding);
523523
switch (atom.mod) {
524524
.char => |c| if (c == '*' or c == '?') return 0,

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.