diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:38:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-14 04:38:06 +0200 |
| commit | 8939837390193e86c52299048caec9c7722178e6 (patch) | |
| tree | db923caaec3762fbb68290fd1ae94cb1465378e7 /dev/examples/cgi | |
| parent | 94799223495b9842bca67e1a6ecf611cec3ee771 (diff) | |
| parent | a786997f304745ce3766a82be06dc6a5d0c2f02c (diff) | |
Merge pull request #2 from snu-systems-corp/dev
feat: scl: major refactors and new version of SCL.
Diffstat (limited to 'dev/examples/cgi')
| -rw-r--r-- | dev/examples/cgi/cgi.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/examples/cgi/cgi.cc b/dev/examples/cgi/cgi.cc index 692f90c..6f73eff 100644 --- a/dev/examples/cgi/cgi.cc +++ b/dev/examples/cgi/cgi.cc @@ -6,7 +6,7 @@ #include <lib/utility/cgi_writer.hpp> -static ocl::basic_chunk_string<char> text_sample = R"( +static scl::basic_chunk_string<char> text_sample = R"( <!DOCTYPE html> <html> <head> @@ -68,7 +68,7 @@ static ocl::basic_chunk_string<char> text_sample = R"( /* @brief this stub loads a 'index.html' or returns an error message if not found. */ int main(int argc, char** argv) { - ocl::cgi::basic_writer<> writer; + scl::cgi::basic_writer<> writer; writer << text_sample; return 0; |
