浏览代码

LibWeb: Fix non return in overflow value check

Cameron Youell 2 年之前
父节点
当前提交
f251ff0521
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Userland/Libraries/LibWeb/Layout/Box.cpp

+ 1 - 0
Userland/Libraries/LibWeb/Layout/Box.cpp

@@ -41,6 +41,7 @@ bool overflow_value_makes_box_a_scroll_container(CSS::Overflow overflow)
     case CSS::Overflow::Scroll:
     case CSS::Overflow::Scroll:
         return true;
         return true;
     }
     }
+    VERIFY_NOT_REACHED();
 }
 }
 
 
 // https://www.w3.org/TR/css-overflow-3/#scroll-container
 // https://www.w3.org/TR/css-overflow-3/#scroll-container