removed commented useless runtime errors

This commit is contained in:
mazunki
2021-11-24 01:37:21 +01:00
parent e10c9dd011
commit bb7b376fa6
2 changed files with 0 additions and 2 deletions

View File

@ -69,7 +69,6 @@ inline FILE* open(const std::string& cmd, int& pid) {
if (cmd == "") return nullptr;
int fd[2];
if (pipe(fd) != 0){
// std::runtime_error("Couldn't open a file descriptor");
}
pid_t child_pid = fork();