Skip to content

Commit

Permalink
Merge #2758: [Build] Update httpserver.cpp
Browse files Browse the repository at this point in the history
beb05fc Update httpserver.cpp (andi448)

Pull request description:

  Added `#include <deque>` as it throws the error:
  ```
  httpserver.cpp:74:10: error: 'deque' in namespace 'std' does not name a template type
     74 |     std::deque<WorkItem*> queue;
        |          ^~~~~
  ```

ACKs for top commit:
  PeterL73:
    ACK beb05fc
  panleone:
    tACK beb05fc
  Fuzzbawls:
    ACK beb05fc

Tree-SHA512: 0cd3056e106fee1e08cd34024251961f9d06e12b4163d62f36a03a9e667708f40d79b1f2a2eec6ef95e3916243f9221a2e3a0093b3cdb67aa8e32c0a92da76e9
  • Loading branch information
Fuzzbawls committed Mar 5, 2023
2 parents c36e8c5 + beb05fc commit 3e2eb99
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/httpserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <deque>

#include <sys/types.h>
#include <sys/stat.h>
Expand Down

0 comments on commit 3e2eb99

Please sign in to comment.