diff Core/HttpServer/HttpServer.cpp @ 3836:0c16051dfd56

test
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 15 Apr 2020 17:28:15 +0200
parents 9fe1d64a748c
children
line wrap: on
line diff
--- a/Core/HttpServer/HttpServer.cpp	Wed Apr 15 14:45:52 2020 +0200
+++ b/Core/HttpServer/HttpServer.cpp	Wed Apr 15 17:28:15 2020 +0200
@@ -170,7 +170,7 @@
 
 
 
-  class ChunkStore
+  class ChunkStore : public boost::noncopyable
   {
   private:
     typedef std::list<ChunkedFile*>  Content;
@@ -308,7 +308,7 @@
                                                   struct mg_connection *connection,
                                                   const std::string& contentLength)
   {
-    int length;      
+    int length;
     try
     {
       length = boost::lexical_cast<int>(contentLength);
@@ -904,7 +904,6 @@
       }
     }
 
-
     if (!found && 
         server.HasHandler())
     {