瀏覽代碼

Fix clang-tidy: use a ranges version of this algorithm [modernize-use-ranges,-warnings-as-errors] (#5268)

Boaz Brickner 1 年之前
父節點
當前提交
afa29d5e66
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      toolchain/check/scope_stack.cpp

+ 4 - 4
toolchain/check/scope_stack.cpp

@@ -166,10 +166,10 @@ auto ScopeStack::LookupOrAddName(SemIR::NameId name_id, SemIR::InstId target_id,
   int scope_depth = scope_stack_.size() - 1;
   if (scope_index.has_value()) {
     scope_depth =
-        std::lower_bound(scope_stack_.begin(), scope_stack_.end(), scope_index,
-                         [](const ScopeStackEntry& entry, ScopeIndex index) {
-                           return entry.index < index;
-                         }) -
+        llvm::lower_bound(scope_stack_, scope_index,
+                          [](const ScopeStackEntry& entry, ScopeIndex index) {
+                            return entry.index < index;
+                          }) -
         scope_stack_.begin();
     CARBON_CHECK(scope_stack_[scope_depth].index == scope_index,
                  "Declaring name in scope that has already ended");