Skip to content

Commit af32dd7

Browse files
committed
v8_platform: fix cpplint issue
Reviewed-By: Fedor Indutny <fedor@indutny.com> PR-URL: local://fedors.head/pull/1
1 parent 10d0dbc commit af32dd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_v8_platform.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Task* TaskQueue::Shift() {
142142

143143

144144
unsigned int TaskQueue::next(unsigned int n) {
145-
return (n + 1) % ARRAY_SIZE(TaskQueue{}.ring_);
145+
return (n + 1) % ARRAY_SIZE(TaskQueue {}.ring_);
146146
}
147147

148148

0 commit comments

Comments
 (0)