Endre =?utf-8?q?Fülöp?= <[email protected]>, Endre =?utf-8?q?Fülöp?= <[email protected]>, Endre =?utf-8?q?Fülöp?= <[email protected]> Message-ID: In-Reply-To: <llvm.org/llvm/llvm-project/pull/[email protected]>
================ @@ -0,0 +1,70 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#include "ExpensiveValueOrCheck.h" +#include "../utils/OptionsUtils.h" +#include "clang/AST/ASTContext.h" +#include "clang/ASTMatchers/ASTMatchFinder.h" + +using namespace clang::ast_matchers; + +namespace clang::tidy::performance { + +ExpensiveValueOrCheck::ExpensiveValueOrCheck(StringRef Name, + ClangTidyContext *Context) + : ClangTidyCheck(Name, Context), + SizeThreshold(Options.get("SizeThreshold", 8U)), + WarnOnRvalueOptional(Options.get("WarnOnRvalueOptional", false)), + OptionalTypes(utils::options::parseStringList( + Options.get("OptionalTypes", "::std::optional"))) {} ---------------- nicovank wrote: It would be nice to match on "any object method named value_or that returns by value" so that this extends to any custom optional types automatically (i.e. duck typing). Maybe false positives exist, but I can't really imagine any. https://github.com/llvm/llvm-project/pull/200166 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
