From 9e3d9284f836e961f4697a42486c008af665aa54 Mon Sep 17 00:00:00 2001 From: Oliver Tappe Date: Mon, 21 Sep 2009 20:47:18 +0000 Subject: [PATCH] * fix build of udf with gcc4 git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33231 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../kernel/file_systems/udf/AllocationDescriptorList.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h b/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h index a5e1392e43..ae241a245c 100644 --- a/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h +++ b/src/add-ons/kernel/file_systems/udf/AllocationDescriptorList.h @@ -146,7 +146,7 @@ AllocationDescriptorList::FindExtent(off_t start, template -AllocationDescriptorList::Descriptor* +typename AllocationDescriptorList::Descriptor* AllocationDescriptorList::_CurrentDescriptor() const { TRACE(("AllocationDescriptorList<>::_CurrentDescriptor:\n" @@ -227,11 +227,11 @@ AllocationDescriptorList::_Rewind() template -AllocationDescriptorList::Descriptor* +typename AllocationDescriptorList::Descriptor* AllocationDescriptorList::_DescriptorArray() const { return fReadFromIcb ? fIcbDescriptors - : (AllocationDescriptorList::Descriptor *) + : (typename AllocationDescriptorList::Descriptor *) fAdditionalDescriptors.Block(); }