Parcourir la source

[2202] Unify class-struct

It should be the same according to the standard, but Clang seems not to
agree with that.
Michal 'vorner' Vaner il y a 12 ans
Parent
commit
a3e7cc6cf8
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      src/lib/util/threads/lock.h

+ 1 - 1
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();