From: Michal 'vorner' Vaner Date: Wed, 5 Sep 2012 11:03:33 +0000 (+0200) Subject: [2202] Unify class-struct X-Git-Tag: trac2402_base~79^2~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3e7cc6cf85981ed5a8a5e63589dfe1767b01e64;p=thirdparty%2Fkea.git [2202] Unify class-struct It should be the same according to the standard, but Clang seems not to agree with that. --- diff --git a/src/lib/util/threads/lock.h b/src/lib/util/threads/lock.h index 10a7878afa..2c2dab866b 100644 --- a/src/lib/util/threads/lock.h +++ b/src/lib/util/threads/lock.h @@ -125,7 +125,7 @@ public: bool locked() const; private: friend class Locker; - struct Impl; + class Impl; Impl* impl_; void lock(); void unlock();