Commit 0467e1de authored by Laurent Aimar's avatar Laurent Aimar

Cosmetics.

parent c7d6aad6
...@@ -111,21 +111,15 @@ public: ...@@ -111,21 +111,15 @@ public:
vlc_mutex_init( &_mutex ); vlc_mutex_init( &_mutex );
} }
Lockable( Cookie* c )
{
Lockable();
}
~Lockable() ~Lockable()
{ {
vlc_mutex_destroy( &_mutex ); vlc_mutex_destroy( &_mutex );
} }
void lock() { vlc_mutex_lock( &_mutex ); } void lock() { vlc_mutex_lock( &_mutex ); }
void unlock() { vlc_mutex_unlock( &_mutex ); } void unlock() { vlc_mutex_unlock( &_mutex ); }
private: private:
vlc_mutex_t _mutex; vlc_mutex_t _mutex;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment