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

Co-authored-by: mlaurencin <mlaurencin@electronjs.org>
This commit is contained in:
trop[bot]
2021-10-21 09:05:33 +09:00
committed by GitHub
parent 339eccfc42
commit 369269c475

View File

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