1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2024-10-27 20:34:20 +00:00

add missing #includes

New compiler version exposed missing header files

resolves #123
This commit is contained in:
Oliver Giles 2020-05-22 11:42:12 +12:00
parent eadcdbdf9c
commit 6c61fb3111
2 changed files with 2 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#ifndef LAMINAR_CONF_H_
#define LAMINAR_CONF_H_
#include <string>
#include <unordered_map>
class StringMap : public std::unordered_map<std::string, std::string> {

View File

@ -24,6 +24,7 @@
#include <capnp/message.h>
#include <capnp/capability.h>
#include <functional>
#include <sys/types.h>
struct Laminar;
struct Http;