From e5827ad16f2248535f7008860e57c7d95b0c8365 Mon Sep 17 00:00:00 2001 From: yhirose Date: Thu, 12 Dec 2019 23:09:34 -0500 Subject: [PATCH] Fixed build error --- example/simplesvr.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/simplesvr.cc b/example/simplesvr.cc index bcfa5af..dcc97f6 100644 --- a/example/simplesvr.cc +++ b/example/simplesvr.cc @@ -27,7 +27,7 @@ string dump_headers(const Headers &headers) { return s; } -string dump_multipart_files(const MultipartFiles &files) { +string dump_multipart_files(const MultipartFormDataMap &files) { string s; char buf[BUFSIZ];