Tracker: LockingList.h style fixes (minor)

This commit is contained in:
John Scipione
2014-06-20 21:01:56 -04:00
parent ff43bcbfd5
commit 603e1a2cf2
+6 -4
View File
@@ -36,7 +36,7 @@ All rights reserved.
#include <Locker.h>
#include "ObjectList.h"
#include <ObjectList.h>
namespace BPrivate {
@@ -46,9 +46,9 @@ class LockingList : public BObjectList<T> {
public:
LockingList(int32 itemsPerBlock = 20, bool owning = false);
~LockingList()
{
{
Lock();
}
}
bool Lock();
void Unlock();
@@ -61,7 +61,8 @@ private:
template<class T>
LockingList<T>::LockingList(int32 itemsPerBlock, bool owning)
: BObjectList<T>(itemsPerBlock, owning)
:
BObjectList<T>(itemsPerBlock, owning)
{
}
@@ -93,4 +94,5 @@ LockingList<T>::IsLocked() const
using namespace BPrivate;
#endif // _LOCKING_LIST_H