diff options
Diffstat (limited to 'src/CGIScript.h')
-rw-r--r-- | src/CGIScript.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/CGIScript.h b/src/CGIScript.h index 622206d..5a7f46e 100644 --- a/src/CGIScript.h +++ b/src/CGIScript.h @@ -13,10 +13,11 @@ public: bool open(); std::string read_output(); + private: FILE* m_pipe; const std::string& m_script_path; - bool m_is_open{false}; + bool m_is_open { false }; std::vector<const char*> m_environment_variables; }; |