We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9673ec8 commit a50d7d3Copy full SHA for a50d7d3
clang/tools/clang-repl/ClangRepl.cpp
@@ -354,7 +354,8 @@ int main(int argc, const char **argv) {
354
if (auto Err = Interp->Undo())
355
llvm::logAllUnhandledErrors(std::move(Err), llvm::errs(), "error: ");
356
} else if (Input.rfind("%lib ", 0) == 0) {
357
- if (auto Err = Interp->LoadDynamicLibrary(Input.data() + 5, UseEPCSearchGen))
+ if (auto Err =
358
+ Interp->LoadDynamicLibrary(Input.data() + 5, UseEPCSearchGen))
359
360
} else if (auto Err = Interp->ParseAndExecute(Input)) {
361
0 commit comments