mirror of
https://github.com/golang/go
synced 2024-11-12 09:50:21 -07:00
runtime: fix code formatting
Place && at the end of line. Offset expression continuation. R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/55380044
This commit is contained in:
parent
9cbd2fb1aa
commit
b7b93a7154
@ -92,9 +92,9 @@ runtime·InitSizes(void)
|
||||
// objects into the page, we might as well
|
||||
// use just this size instead of having two
|
||||
// different sizes.
|
||||
if(sizeclass > 1
|
||||
&& npages == runtime·class_to_allocnpages[sizeclass-1]
|
||||
&& allocsize/size == allocsize/runtime·class_to_size[sizeclass-1]) {
|
||||
if(sizeclass > 1 &&
|
||||
npages == runtime·class_to_allocnpages[sizeclass-1] &&
|
||||
allocsize/size == allocsize/runtime·class_to_size[sizeclass-1]) {
|
||||
runtime·class_to_size[sizeclass-1] = size;
|
||||
continue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user