clang-tools  6.0.0
ReplaceRandomShuffleCheck.h
Go to the documentation of this file.
1 //===--- ReplaceRandomShuffleCheck.h - clang-tidy----------------*- C++ -*-===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_REPLACE_RANDOM_SHUFFLE_H
11 #define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_REPLACE_RANDOM_SHUFFLE_H
12 
13 #include "../ClangTidy.h"
14 #include "../utils/IncludeInserter.h"
15 
16 namespace clang {
17 namespace tidy {
18 namespace modernize {
19 
20 /// std::random_shuffle will be removed as of C++17. This check will find and
21 /// replace all occurrences of std::random_shuffle with std::shuffle.
22 ///
23 /// For the user-facing documentation see:
24 /// http://clang.llvm.org/extra/clang-tidy/checks/modernize-replace-random-shuffle.html
26 public:
27  ReplaceRandomShuffleCheck(StringRef Name, ClangTidyContext *Context);
28  void registerPPCallbacks(CompilerInstance &Compiler) override;
29  void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
30  void registerMatchers(ast_matchers::MatchFinder *Finder) override;
31  void check(const ast_matchers::MatchFinder::MatchResult &Result) override;
32 
33 private:
34  std::unique_ptr<utils::IncludeInserter> IncludeInserter;
35  const utils::IncludeSorter::IncludeStyle IncludeStyle;
36 };
37 
38 } // namespace modernize
39 } // namespace tidy
40 } // namespace clang
41 
42 #endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MODERNIZE_REPLACE_RANDOM_SHUFFLE_H
StringHandle Name
IncludeStyle
Supported include styles.
Definition: IncludeSorter.h:27
Base class for all clang-tidy checks.
Definition: ClangTidy.h:127
void storeOptions(ClangTidyOptions::OptionMap &Opts) override
Should store all options supported by this check with their current values or default values for opti...
std::random_shuffle will be removed as of C++17.
std::map< std::string, std::string > OptionMap
void registerMatchers(ast_matchers::MatchFinder *Finder) override
Override this to register AST matchers with Finder.
void registerPPCallbacks(CompilerInstance &Compiler) override
Override this to register PPCallbacks with Compiler.
Every ClangTidyCheck reports errors through a DiagnosticsEngine provided by this context.
void check(const ast_matchers::MatchFinder::MatchResult &Result) override
ClangTidyChecks that register ASTMatchers should do the actual work in here.
ReplaceRandomShuffleCheck(StringRef Name, ClangTidyContext *Context)