//===-- OptionsUtils.cpp - clang-tidy -------------------------------------===// // // 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 "OptionsUtils.h" #include "llvm/ADT/StringExtras.h" namespace clang::tidy::utils::options { static const char StringsDelimiter[] = …; std::vector<StringRef> parseStringList(StringRef Option) { … } std::vector<StringRef> parseListPair(StringRef L, StringRef R) { … } std::string serializeStringList(ArrayRef<StringRef> Strings) { … } } // namespace clang::tidy::utils::options