소스 검색

Fix accidental double std:: qualifiers.

PiperOrigin-RevId: 309136120
main
Victor Costan 4 년 전
부모
커밋
5c6dd75897
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      util/env_posix_test.cc

+ 1
- 1
util/env_posix_test.cc 파일 보기

@ -149,7 +149,7 @@ void CheckCloseOnExecDoesNotLeakFDs(
if (child_pid == kForkInChildProcessReturnValue) {
::execv(child_argv[0], child_argv);
std::fprintf(stderr, "Error spawning child process: %s\n", strerror(errno));
std::std::exit(kTextCloseOnExecHelperExecFailedCode);
std::exit(kTextCloseOnExecHelperExecFailedCode);
}
int child_status = 0;

불러오는 중...
취소
저장