Bug 563195: Fix -Wshadow warning in nsHtml5ByteReadable.h. r=hsivonen

This commit is contained in:
L. David Baron 2013-02-21 18:10:59 -08:00
parent 4102945342
commit 817ce04204

View File

@ -12,9 +12,9 @@ class nsHtml5ByteReadable
{
public:
nsHtml5ByteReadable(const uint8_t* current, const uint8_t* end)
: current(current),
end(end)
nsHtml5ByteReadable(const uint8_t* aCurrent, const uint8_t* aEnd)
: current(aCurrent),
end(aEnd)
{
}