summaryrefslogtreecommitdiff
path: root/src/CGIScript.h
diff options
context:
space:
mode:
authorcflip <cflip@cflip.net>2022-09-19 21:46:12 -0600
committercflip <cflip@cflip.net>2022-09-19 21:46:12 -0600
commitbcea88142033f37bffeca4df096fb7795ebf7020 (patch)
treed1f990532092327c3269ac3bed86eec6061a3067 /src/CGIScript.h
parentb8766fcef6dcc40bd46584015375ea76518c6201 (diff)
Add ClangFormat configuration and reformat files
Diffstat (limited to 'src/CGIScript.h')
-rw-r--r--src/CGIScript.h3
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;
};