test_32bit_build.cpp 143 B

123456789
  1. #include "../httplib.h"
  2. int main() {
  3. httplib::Server svr;
  4. httplib::Client cli("localhost", 8080);
  5. (void)svr;
  6. (void)cli;
  7. return 0;
  8. }