xref: /llvm-project/clang-tools-extra/clang-tidy/FileExtensionsSet.h (revision 87c4113708b88ef20d3cac96e2fd43e5c3eabf91)
15b37cddfSCarlos Galvez //===--- FileExtensionsSet.h - clang-tidy -----------------------*- C++ -*-===//
25b37cddfSCarlos Galvez //
35b37cddfSCarlos Galvez // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
45b37cddfSCarlos Galvez // See https://llvm.org/LICENSE.txt for license information.
55b37cddfSCarlos Galvez // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
65b37cddfSCarlos Galvez //
75b37cddfSCarlos Galvez //===----------------------------------------------------------------------===//
85b37cddfSCarlos Galvez 
95b37cddfSCarlos Galvez #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_FILE_EXTENSIONS_SET_H
105b37cddfSCarlos Galvez #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_FILE_EXTENSIONS_SET_H
115b37cddfSCarlos Galvez 
125b37cddfSCarlos Galvez #include "llvm/ADT/SmallSet.h"
135b37cddfSCarlos Galvez #include "llvm/ADT/StringRef.h"
145b37cddfSCarlos Galvez 
155b37cddfSCarlos Galvez namespace clang::tidy {
16*87c41137SPiotr Zegar using FileExtensionsSet = llvm::SmallSet<llvm::StringRef, 5>;
175b37cddfSCarlos Galvez } // namespace clang::tidy
185b37cddfSCarlos Galvez 
195b37cddfSCarlos Galvez #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_FILE_EXTENSIONS_SET_H
20