Browse 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 12 years ago
parent
commit
a3e7cc6cf8
1 changed files with 1 additions and 1 deletions
  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;
     bool locked() const;
 private:
 private:
     friend class Locker;
     friend class Locker;
-    struct Impl;
+    class Impl;
     Impl* impl_;
     Impl* impl_;
     void lock();
     void lock();
     void unlock();
     void unlock();