Skip to content

Commit

Permalink
No public description
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 576169153
  • Loading branch information
FuzzTest Team authored and copybara-github committed Oct 24, 2023
1 parent c35abd2 commit b5dbc33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzztest/internal/subprocess.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@

namespace fuzztest::internal {

#if !defined(_MSC_VER)

TerminationStatus::TerminationStatus(int status) : status_(status) {}

bool TerminationStatus::Exited() const { return WIFEXITED(status_); }
Expand All @@ -52,8 +54,6 @@ std::variant<ExitCodeT, SignalT> TerminationStatus::Status() const {
return static_cast<SignalT>(WTERMSIG(status_));
}

#if !defined(_MSC_VER)

// Helper class for running commands in a subprocess.
class SubProcess {
public:
Expand Down

0 comments on commit b5dbc33

Please sign in to comment.