Skip to content

Commit ac760a7

Browse files
authored
Update CppInterOp.cpp
1 parent 33bad2a commit ac760a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Interpreter/CppInterOp.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2835,8 +2835,8 @@ namespace Cpp {
28352835
pclose(fp);
28362836
}
28372837
};
2838-
using unique_file = std::unique_ptr<std::FILE, file_deleter>;
2839-
unique_file file{popen(cmd, "r")};
2838+
using pipe = std::unique_ptr<std::FILE, file_deleter>;
2839+
pipe file{popen(cmd, "r")};
28402840
LLVM_DEBUG(dbgs() << "Executing command '" << cmd << "'\n");
28412841

28422842
if (!pipe) {

0 commit comments

Comments
 (0)