yhirose 2 years ago
parent
commit
0e7d2f9f93
1 changed files with 1 additions and 5 deletions
  1. 1 5
      httplib.h

+ 1 - 5
httplib.h

@@ -5598,11 +5598,7 @@ inline bool Server::listen_internal() {
 #endif
       }
 
-#if __cplusplus > 201703L
-      task_queue->enqueue([=, this]() { process_and_close_socket(sock); });
-#else
-      task_queue->enqueue([=]() { process_and_close_socket(sock); });
-#endif
+      task_queue->enqueue([this, sock]() { process_and_close_socket(sock); });
     }
 
     task_queue->shutdown();