Skip to content

Commit 978f6fe

Browse files
committed
address reviews by bot
1 parent c1bab81 commit 978f6fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/Interpreter/CppInterOp.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2960,7 +2960,8 @@ namespace Cpp {
29602960
#ifdef CPPINTEROP_USE_CLING
29612961
auto I = new compat::Interpreter(ClingArgv.size(), &ClingArgv[0]);
29622962
#else
2963-
auto Interp = compat::Interpreter::create(ClingArgv.size(), ClingArgv.data());
2963+
auto Interp =
2964+
compat::Interpreter::create(static_cast<int>(ClingArgv.size()), ClingArgv.data());
29642965
if (!Interp)
29652966
return nullptr;
29662967
auto* I = Interp.release();

0 commit comments

Comments
 (0)