Sign in
llvm
/
third_party
/
cpp-httplib
/
refs/heads/support-32bit
/
.
/
test
/
test_32bit_build.cpp
blob: c616e85661722f45e9b62cad2b17d08c75746d18 [
file
] [
log
] [
blame
] [
edit
]
#include
"../httplib.h"
int
main
()
{
httplib
::
Server
svr
;
httplib
::
Client
cli
(
"localhost"
,
8080
);
(
void
)
svr
;
(
void
)
cli
;
return
0
;
}