From c271559c8b2b9583346c8c6269701894cb9ff4c1 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 13 Apr 2013 22:12:53 +0200 Subject: [PATCH] Fix incorrect struct/class in forward declares (found by Clang). --- client.h | 2 +- stream.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/client.h b/client.h index 87fa718..ff07a7b 100644 --- a/client.h +++ b/client.h @@ -7,7 +7,7 @@ #include class ClientProto; -class Stream; +struct Stream; // Digested statistics for writing to logs etc. struct ClientStats { diff --git a/stream.h b/stream.h index 256946c..efedc9b 100644 --- a/stream.h +++ b/stream.h @@ -8,7 +8,7 @@ #include #include -class Client; +struct Client; class MarkPool; class StreamProto; -- 2.39.2