diff Core/HttpServer/FilesystemHttpHandler.cpp @ 1446:8dc80ba768aa

refactoring: IHttpHandler does not use std::string to hold the request body
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 01 Jul 2015 13:16:12 +0200
parents feaf2840917c
children c94353fbd4e9
line wrap: on
line diff
--- a/Core/HttpServer/FilesystemHttpHandler.cpp	Wed Jul 01 12:30:19 2015 +0200
+++ b/Core/HttpServer/FilesystemHttpHandler.cpp	Wed Jul 01 13:16:12 2015 +0200
@@ -130,7 +130,8 @@
     const UriComponents& uri,
     const Arguments& headers,
     const GetArguments& arguments,
-    const std::string&)
+    const char* /*bodyData*/,
+    size_t /*bodySize*/)
   {
     if (!Toolbox::IsChildUri(pimpl_->baseUri_, uri))
     {