From f07467d2f7344af716a90df0b54573b4fd9967e3 Mon Sep 17 00:00:00 2001 From: "thomasvl@chromium.org" <thomasvl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> Date: Wed, 16 Jun 2010 14:28:30 +0000 Subject: Working towards -Wextra - Make loops use {} instead of a ';' to make it clear there is no body to the loop. - Remove checks of unsigned values for <0 - coordinates should be CGFloat, not NSUInteger. BUG=34160 TEST=none Review URL: http://codereview.chromium.org/2865003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49939 0039d316-1c4b-4281-b951-d872f2087c98 --- gpu/command_buffer/common/id_allocator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gpu') diff --git a/gpu/command_buffer/common/id_allocator.cc b/gpu/command_buffer/common/id_allocator.cc index 22c55e3..faa4599 100644 --- a/gpu/command_buffer/common/id_allocator.cc +++ b/gpu/command_buffer/common/id_allocator.cc @@ -27,7 +27,7 @@ ResourceId IdAllocator::FindFirstFree() const { ResourceId IdAllocator::AllocateIDAtOrAbove(ResourceId desired_id) { DCHECK_LT(static_cast<ResourceId>(used_ids_.size()), static_cast<ResourceId>(-1)); - for (; InUse(desired_id); ++desired_id); + for (; InUse(desired_id); ++desired_id) {} MarkAsUsed(desired_id); return desired_id; } -- cgit v1.1