1
0
mirror of https://github.com/ohwgiles/laminar.git synced 2026-09-25 05:16:26 +00:00

fix warnings under clang++

This commit is contained in:
Oliver Giles
2020-09-26 11:33:36 +12:00
parent 9974df21ce
commit 9862affd98
6 changed files with 12 additions and 14 deletions

View File

@@ -1,5 +1,5 @@
///
/// Copyright 2015-2017 Oliver Giles
/// Copyright 2015-2020 Oliver Giles
///
/// This file is part of Laminar
///
@@ -26,9 +26,9 @@
#include <functional>
#include <sys/types.h>
struct Laminar;
struct Http;
struct Rpc;
class Laminar;
class Http;
class Rpc;
// This class manages the program's asynchronous event loop
class Server final : public kj::TaskSet::ErrorHandler {