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