Skip to content

Commit b6177a8

Browse files
committed
resolving comments
1 parent d57d112 commit b6177a8

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

lib/CppInterOp/Compatibility.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ createClangInterpreter(std::vector<const char*>& args, int stdin_fd = 0,
276276
std::string(LLVM_BUILD_LIB_DIR) + "/bin/llvm-jitlink-executor";
277277
OutOfProcessConfig.UseSharedMemory = false;
278278
OutOfProcessConfig.SlabAllocateSize = 0;
279-
// LCOV_EXCL_STOP
279+
// LCOV_EXCL_START
280280
OutOfProcessConfig.CustomizeFork = [&stdin_fd, &stdout_fd,
281281
&stderr_fd]() { // Lambda defined inline
282282
auto redirect = [](int from, int to) {

lib/CppInterOp/CppInterOpInterpreter.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
#include <algorithm>
4646
#include <cstdio>
4747
#include <memory>
48+
#include <tuple>
4849
#include <utility>
4950
#include <vector>
5051

unittests/CppInterOp/InterpreterTest.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ TEST(InterpreterTest, DebugFlag) {
5959
testing::internal::CaptureStderr();
6060
Cpp::Process("int c = 12;");
6161
cerrs = testing::internal::GetCapturedStderr();
62-
std::cout << cerrs << std::endl;
6362
EXPECT_STREQ(cerrs.c_str(), "");
6463
}
6564

0 commit comments

Comments
 (0)