Commit 55deb36c by Geoff Lang Committed by Commit Bot

Fix warning about unused local variable.

BUG=angleproject:1382 Change-Id: I63925fb7eeff2bdab26c1e541afd9cd1851485e6 Reviewed-on: https://chromium-review.googlesource.com/354083Reviewed-by: 's avatarGeoff Lang <geofflang@chromium.org> Commit-Queue: Geoff Lang <geofflang@chromium.org>
parent c7d6ea48
......@@ -49,6 +49,7 @@ GLuint HandleRangeAllocator::allocateAtOrAbove(GLuint wanted)
}
GLuint firstId = current->first;
UNUSED_ASSERTION_VARIABLE(firstId);
GLuint lastId = current->second;
ASSERT(wanted >= firstId);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment