Skip to content

Commit 609f7a4

Browse files
committed
Removing extra format changes
1 parent a3fd0a9 commit 609f7a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

unittests/CppInterOp/InterpreterTest.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ TEST(InterpreterTest, Process) {
150150
}
151151
if (llvm::sys::RunningOnValgrind())
152152
GTEST_SKIP() << "XFAIL due to Valgrind report";
153-
std::vector<const char*> interpreter_args = {"-include", "new"};
153+
std::vector<const char*> interpreter_args = { "-include", "new" };
154154
auto* I = TestUtils::CreateInterpreter(interpreter_args);
155155
EXPECT_TRUE(Cpp::Process("") == 0);
156156
EXPECT_TRUE(Cpp::Process("int a = 12;") == 0);
@@ -237,7 +237,7 @@ TEST(InterpreterTest, CreateInterpreter) {
237237
#ifndef CPPINTEROP_USE_CLING
238238
TEST(InterpreterTest, CreateInterpreterCAPI) {
239239
const char* argv[] = {"-std=c++17"};
240-
auto* CXI = clang_createInterpreter(argv, 1);
240+
auto *CXI = clang_createInterpreter(argv, 1);
241241
auto CLI = clang_Interpreter_getClangInterpreter(CXI);
242242
EXPECT_TRUE(CLI);
243243
clang_Interpreter_dispose(CXI);
@@ -248,7 +248,7 @@ TEST(InterpreterTest, CreateInterpreterCAPIFailure) {
248248
GTEST_SKIP() << "Disabled on Windows. Needs fixing.";
249249
#endif
250250
const char* argv[] = {"-fsyntax-only", "-Xclang", "-invalid-plugin"};
251-
auto* CXI = clang_createInterpreter(argv, 3);
251+
auto *CXI = clang_createInterpreter(argv, 3);
252252
EXPECT_EQ(CXI, nullptr);
253253
}
254254
#endif

0 commit comments

Comments
 (0)