From: Steinar H. Gunderson Date: Sat, 13 Apr 2013 20:12:53 +0000 (+0200) Subject: Fix incorrect struct/class in forward declares (found by Clang). X-Git-Tag: 1.0.0~123 X-Git-Url: https://git.sesse.net/?p=cubemap;a=commitdiff_plain;h=c271559c8b2b9583346c8c6269701894cb9ff4c1 Fix incorrect struct/class in forward declares (found by Clang). --- 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;