Skip to content

Commit fcfab29

Browse files
committed
f
1 parent abe0d5a commit fcfab29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

unittests/CppInterOp/InterpreterTest.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ TEST(InterpreterTest, ExternalInterpreterTest) {
195195
std::vector<const char *> ClingArgv = {"-resource-dir", ResourceDir.c_str(),
196196
"-std=c++14"};
197197
ClingArgv.insert(ClingArgv.begin(), MainExecutableName.c_str());
198-
std::unique_ptr<cling::Interpreter> I(ClingArgv.size(), &ClingArgv[0]);
198+
auto I = new compat::Interpreter(ClingArgv.size(), &ClingArgv[0]);
199199
#endif
200200

201201
auto ExtInterp = I.get();

0 commit comments

Comments
 (0)