Skip to content

Commit 57996fb

Browse files
authored
[llvm23] fix split-file.cpp (#5092)
1 parent e14f450 commit 57996fb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

utils/split-file.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,10 @@ int main(int argc, const char **argv) {
191191
argc, argv,
192192
"Split input into multiple parts separated by regex '^(.|//)--- ' and "
193193
"extract the part specified by '^(.|//)--- <part>'\n",
194-
nullptr,
194+
#if LDC_LLVM_VER >= 2300
195+
/*Errs*/nullptr,
196+
#endif
197+
/*VFS*/nullptr,
195198
/*EnvVar=*/nullptr,
196199
/*LongOptionsUseDoubleDash=*/true);
197200

0 commit comments

Comments
 (0)