From 2a35bc39ef30ab3a4d4c7fde8e69aade7f2c99d6 Mon Sep 17 00:00:00 2001 From: aszostak Date: Fri, 18 Apr 2008 13:51:16 +0000 Subject: [PATCH] Minor changes to improve interface consistency of this class. --- HLT/MUON/AliHLTMUONList.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/HLT/MUON/AliHLTMUONList.h b/HLT/MUON/AliHLTMUONList.h index 289865167ba..42066f864b0 100644 --- a/HLT/MUON/AliHLTMUONList.h +++ b/HLT/MUON/AliHLTMUONList.h @@ -595,11 +595,11 @@ protected: struct NodeEntry { - bool fFree; // Is this block free. + bool fFree; // Indicates if this block is free. Node fNode; // The node structure. }; - AliHLTUInt32_t fNextFree; // The next free entry that is presumably free. + AliHLTUInt32_t fNextFree; // The next entry that is presumably free. AliHLTUInt32_t fMaxEntries; // The number of node entries that can be stored in fEntries. NodeEntry* fEntry; // Buffer of preallocated node entries. @@ -630,7 +630,7 @@ protected: throw std::bad_alloc(); } - Node* NewNode(const DataType& data) + Node* NewNode(const DataType& data) throw(std::bad_alloc) { //return new Node(data); assert( fNextFree < fMaxEntries ); -- 2.43.5