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 7452945 commit 4d7de4aCopy full SHA for 4d7de4a
unittests/CppInterOp/InterpreterTest.cpp
@@ -94,7 +94,7 @@ TEST(InterpreterTest, Process) {
94
EXPECT_FALSE(Cpp::Process("int f(); int res = f();") == 0);
95
96
// C API
97
- auto CXI = clang_createInterpreterFromRawPtr(I);
+ auto* CXI = clang_createInterpreterFromRawPtr(I);
98
clang_Interpreter_declare(CXI, "#include <iostream>", false);
99
clang_Interpreter_process(CXI, "int c = 42;");
100
auto* CXV = clang_createValue();
@@ -129,7 +129,7 @@ TEST(InterpreterTest, CreateInterpreter) {
129
130
#ifndef CPPINTEROP_USE_CLING
131
132
133
auto CLI = clang_Interpreter_getClangInterpreter(CXI);
134
EXPECT_TRUE(CLI);
135
0 commit comments