fix: remove 'NOTREACHED()' from 'GetWindowResizeEdge' (#31470)

This commit is contained in:
Michaela Laurencin 2021-10-19 09:19:04 -07:00 committed by GitHub
parent 8364375347
commit a2d993c9b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,7 +158,6 @@ gfx::ResizeEdge GetWindowResizeEdge(WPARAM param) {
case WMSZ_BOTTOMRIGHT:
return gfx::ResizeEdge::kBottomRight;
default:
NOTREACHED();
return gfx::ResizeEdge::kBottomRight;
}
}