Skip to content

Commit

Permalink
Bug 818279 - Don't namespace prefix PL_DHASH_NEXT to fix a compile fa…
Browse files Browse the repository at this point in the history
…ilure on linux/clang. r=ehsan
  • Loading branch information
George Wright committed Dec 5, 2012
1 parent e350083 commit 942601f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/profiler/JSCustomObjectBuilder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ PLDHashOperator HashTableOutput(const nsACString& aKey, PropertyValue* aValue, v
EscapeToStream(streamClosure.mStream, (const char*)aKey.BeginReading());
streamClosure.mStream << ":";
aValue->SendToStream(streamClosure.mStream);
return PLDHashOperator::PL_DHASH_NEXT;
return PL_DHASH_NEXT;
}

std::ostream&
Expand Down Expand Up @@ -222,7 +222,7 @@ operator<<(std::ostream& stream, JSCustomArray* entry)
PLDHashOperator HashTableFree(const nsACString& aKey, PropertyValue* aValue, void* stream)
{
delete aValue;
return PLDHashOperator::PL_DHASH_NEXT;
return PL_DHASH_NEXT;
}

JSCustomObject::~JSCustomObject()
Expand Down

0 comments on commit 942601f

Please sign in to comment.