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 bfffab9 commit b7c0766Copy full SHA for b7c0766
unittests/CppInterOp/InterpreterTest.cpp
@@ -90,7 +90,7 @@ TEST(InterpreterTest, Process) {
90
EXPECT_FALSE(Cpp::Process("int f(); int res = f();") == 0);
91
92
// C API
93
- auto CXI = clang_createInterpreterFromRawPtr(I);
+ auto* CXI = clang_createInterpreterFromRawPtr(I);
94
clang_Interpreter_declare(CXI, "#include <iostream>", false);
95
clang_Interpreter_process(CXI, "int c = 42;");
96
auto* CXV = clang_createValue();
@@ -125,7 +125,7 @@ TEST(InterpreterTest, CreateInterpreter) {
125
126
#ifndef USE_CLING
127
128
129
auto CLI = clang_Interpreter_getClangInterpreter(CXI);
130
EXPECT_TRUE(CLI);
131
0 commit comments