v8_platform: fix cpplint issue

Reviewed-By: Fedor Indutny <fedor@indutny.com>
PR-URL: local://fedors.head/pull/1
This commit is contained in:
Fedor Indutny 2014-10-28 21:12:49 -04:00
parent 10d0dbc427
commit af32dd7b74

View File

@ -142,7 +142,7 @@ Task* TaskQueue::Shift() {
unsigned int TaskQueue::next(unsigned int n) {
return (n + 1) % ARRAY_SIZE(TaskQueue{}.ring_);
return (n + 1) % ARRAY_SIZE(TaskQueue {}.ring_);
}