summaryrefslogtreecommitdiff
path: root/src/sysExec.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sysExec.h')
-rw-r--r--src/sysExec.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sysExec.h b/src/sysExec.h
index 28e6d23..02ac00e 100644
--- a/src/sysExec.h
+++ b/src/sysExec.h
@@ -60,7 +60,7 @@ class SysExec
void doExec(std::string const& script, StringVector const& args, StringList const& env);
std::string script_;
-
+ bool closed_;
#ifdef _MSC_VER
PROCESS_INFORMATION process_info_;
DWORD return_code_;
@@ -69,7 +69,7 @@ class SysExec
int pipefd_;
int return_code_;
#endif
- bool closed_;
+
};