diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:35:26 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-10-14 04:35:26 +0200 |
| commit | a786997f304745ce3766a82be06dc6a5d0c2f02c (patch) | |
| tree | db923caaec3762fbb68290fd1ae94cb1465378e7 /dev/examples/cgi/cgi.cc | |
| parent | fa4748e414e9494442f9bcde9c659d3951af19c0 (diff) | |
feat: scl: major refactors and new version of SCL.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/examples/cgi/cgi.cc')
| -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; |
