Skip to content

Commit 29e7f98

Browse files
committed
Merge branch 'master' into simplify_dependency
2 parents 02d3e82 + a099841 commit 29e7f98

File tree

12 files changed

+481
-362
lines changed

12 files changed

+481
-362
lines changed

.github/workflows/verify-build.yml

Lines changed: 470 additions & 0 deletions
Large diffs are not rendered by default.

.travis.yml

Lines changed: 0 additions & 358 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ Copyright (C) 2011-2019 Sebastiano Merlino.
99
-->
1010

1111
# The libhttpserver reference manual
12-
13-
[![Build Status](https://api.travis-ci.com/etr/libhttpserver.svg?branch=master)](https://travis-ci.com/etr/libhttpserver)
12+
![GA: Build Status](https://github.com/etr/libhttpserver/actions/workflows/verify-build.yml/badge.svg)
1413
[![Build status](https://ci.appveyor.com/api/projects/status/ktoy6ewkrf0q1hw6/branch/master?svg=true)](https://ci.appveyor.com/project/etr/libhttpserver/branch/master)
1514
[![codecov](https://codecov.io/gh/etr/libhttpserver/branch/master/graph/badge.svg)](https://codecov.io/gh/etr/libhttpserver)
1615
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/5fa4bdc3815b4c10977f3badefedecd6)](https://www.codacy.com/app/etr/libhttpserver?utm_source=github.com&utm_medium=referral&utm_content=etr/libhttpserver&utm_campaign=Badge_Grade)

src/basic_auth_fail_response.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
#include "httpserver/basic_auth_fail_response.hpp"
2222
#include <microhttpd.h>
23+
#include <iosfwd>
2324

2425
struct MHD_Connection;
2526
struct MHD_Response;

src/deferred_response.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
#include "httpserver/deferred_response.hpp"
2222
#include <microhttpd.h>
23+
#include <iosfwd>
2324

2425
struct MHD_Response;
2526

src/details/http_endpoint.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@
1919
*/
2020

2121
#include <ctype.h>
22+
#include <algorithm>
2223
#include <map>
2324
#include <memory>
2425
#include <regex>
2526
#include <sstream>
2627
#include <stdexcept>
2728
#include <string>
28-
#include <utility>
2929
#include <vector>
3030

3131
#include "httpserver/details/http_endpoint.hpp"

0 commit comments

Comments
 (0)