Format code with clang-format

This commit is contained in:
Heilig Benedek 2018-05-12 19:51:19 +02:00
parent eae0674f61
commit f1fd457411

View file

@ -34,8 +34,7 @@ namespace {
// Some AMD drivers can't display windows that are less than 64x64 pixels, // Some AMD drivers can't display windows that are less than 64x64 pixels,
// so expand them to be at least that size. http://crbug.com/286609 // so expand them to be at least that size. http://crbug.com/286609
gfx::Size expanded( gfx::Size expanded(std::max(size.width(), min_size.width()),
std::max(size.width(), min_size.width()),
std::max(size.height(), min_size.height())); std::max(size.height(), min_size.height()));
return expanded; return expanded;
} }