File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ libhttpserver can be used without any dependencies aside from libmicrohttpd.
7979
8080The minimum versions required are:
8181* g++ >= 5.5.0 or clang-3.6
82+ * C++17 or newer
8283* libmicrohttpd >= 0.9.64
8384* [ Optionally] : for TLS (HTTPS) support, you'll need [ libgnutls] ( http://www.gnutls.org/ ) .
8485* [ Optionally] : to compile the code-reference, you'll need [ doxygen] ( http://www.doxygen.nl/ ) .
Original file line number Diff line number Diff line change 2121#ifndef SRC_HTTPSERVER_HPP_
2222#define SRC_HTTPSERVER_HPP_
2323
24+ #if __cplusplus < 201703L
25+ # error ("libhttpserver requires C++17 or later.")
26+ #endif
27+
2428#define _HTTPSERVER_HPP_INSIDE_
2529
2630#include " httpserver/basic_auth_fail_response.hpp"
You can’t perform that action at this time.
0 commit comments