Bring up to speed for GCC4.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35080 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2010-01-14 21:51:48 +00:00
parent 9d3442dff1
commit 783a5c71b1

View File

@ -121,7 +121,7 @@ public:
virtual Delegate* Clone() const
{
return new(nothrow) Iterator(fParameters, fCount);
return new(std::nothrow) Iterator(fParameters, fCount);
}
virtual bool HasNext() const
@ -166,7 +166,7 @@ public:
virtual Delegate* Clone() const
{
return new(nothrow) NameIterator(fParameters, fCount,
return new(std::nothrow) NameIterator(fParameters, fCount,
fName.GetString());
}
@ -276,7 +276,7 @@ DriverParameterContainer::GetParameterIterator() const
{
int32 count;
if (const driver_parameter* parameters = GetParametersAndCount(&count)) {
if (Iterator* iterator = new(nothrow) Iterator(parameters, count))
if (Iterator* iterator = new(std::nothrow) Iterator(parameters, count))
return DriverParameterIterator(iterator);
}
return DriverParameterIterator();
@ -288,7 +288,7 @@ DriverParameterContainer::GetParameterIterator(const char* name) const
{
int32 count;
if (const driver_parameter* parameters = GetParametersAndCount(&count)) {
NameIterator* iterator = new(nothrow) NameIterator(parameters, count,
NameIterator* iterator = new(std::nothrow) NameIterator(parameters, count,
name);
if (iterator)
return DriverParameterIterator(iterator);