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