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 978f6fe commit 61cd557Copy full SHA for 61cd557
lib/Interpreter/CppInterOp.cpp
@@ -2960,8 +2960,8 @@ namespace Cpp {
2960
#ifdef CPPINTEROP_USE_CLING
2961
auto I = new compat::Interpreter(ClingArgv.size(), &ClingArgv[0]);
2962
#else
2963
- auto Interp =
2964
- compat::Interpreter::create(static_cast<int>(ClingArgv.size()), ClingArgv.data());
+ auto Interp = compat::Interpreter::create(
+ static_cast<int>(ClingArgv.size()), ClingArgv.data());
2965
if (!Interp)
2966
return nullptr;
2967
auto* I = Interp.release();
0 commit comments