Add default member initializer for sandbox2::Executor::Process members

PiperOrigin-RevId: 440877694
Change-Id: I0899393b05d064cd8318e11eef796f89b3c0ad0e
This commit is contained in:
Sandboxed API Team 2022-04-11 06:58:39 -07:00 committed by Copybara-Service
parent c6166b1364
commit ce5da915a2

View File

@ -40,8 +40,8 @@ namespace sandbox2 {
class Executor final {
public:
struct Process {
pid_t init_pid;
pid_t main_pid;
pid_t init_pid = -1;
pid_t main_pid = -1;
};
Executor(const Executor&) = delete;