Skip to content

Commit c532033

Browse files
committed
[NFC][Clang] Fix compile warning caused by #78330
1 parent 8789b7e commit c532033

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/Driver/ToolChains/Clang.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2726,7 +2726,7 @@ RenderComplexRangeOption(LangOptions::ComplexRangeKind Range) {
27262726
ComplexRangeStr += "fortran";
27272727
break;
27282728
default:
2729-
assert("Unexpected range option");
2729+
assert(0 && "Unexpected range option");
27302730
}
27312731
return ComplexRangeStr;
27322732
}

0 commit comments

Comments
 (0)