mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2026-04-11 19:28:30 +00:00
* Remove 32-bit limitation * Fix build problems * Add 32-bit disclaimer and fix MSVC x86 warnings - Move 32-bit warning to top of README with strong disclaimer - Add static_cast<size_t> to fix truncation warnings on 32-bit MSVC Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
143 B
C++
10 lines
143 B
C++
#include "../httplib.h"
|
|
|
|
int main() {
|
|
httplib::Server svr;
|
|
httplib::Client cli("localhost", 8080);
|
|
(void)svr;
|
|
(void)cli;
|
|
return 0;
|
|
}
|