diff options
author | Alexander Kornienko <alexfh@google.com> | 2017-11-23 13:49:14 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2017-11-23 13:49:14 +0000 |
commit | a3251bf24c8bc0ebe8fb09e0d59dbc70fa706859 (patch) | |
tree | 2fa661b80c864922a761b60d6ba32ab86736f1d4 /clang-tools-extra/clang-tidy/misc/StringConstructorCheck.h | |
parent | c01f7f131bd82659fa484cfd6fc9b8a495b2e5ae (diff) | |
download | bcm5719-llvm-a3251bf24c8bc0ebe8fb09e0d59dbc70fa706859.tar.gz bcm5719-llvm-a3251bf24c8bc0ebe8fb09e0d59dbc70fa706859.zip |
[clang-tidy] rename_check.py misc-string-constructor bugprone-string-constructor
Summary:
Rename misc-string-constructor to bugprone-string-constructor +
manually update the lenght of '==='s in the doc file.
Reviewers: hokein, xazax.hun
Reviewed By: hokein, xazax.hun
Subscribers: mgorny, xazax.hun, cfe-commits
Differential Revision: https://reviews.llvm.org/D40388
llvm-svn: 318916
Diffstat (limited to 'clang-tools-extra/clang-tidy/misc/StringConstructorCheck.h')
-rw-r--r-- | clang-tools-extra/clang-tidy/misc/StringConstructorCheck.h | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/clang-tools-extra/clang-tidy/misc/StringConstructorCheck.h b/clang-tools-extra/clang-tidy/misc/StringConstructorCheck.h deleted file mode 100644 index ca32fb6f962..00000000000 --- a/clang-tools-extra/clang-tidy/misc/StringConstructorCheck.h +++ /dev/null @@ -1,39 +0,0 @@ -//===--- StringConstructorCheck.h - clang-tidy-------------------*- C++ -*-===// -// -// The LLVM Compiler Infrastructure -// -// This file is distributed under the University of Illinois Open Source -// License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// - -#ifndef LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_STRING_CONSTRUCTOR_H -#define LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_STRING_CONSTRUCTOR_H - -#include "../ClangTidy.h" - -namespace clang { -namespace tidy { -namespace misc { - -/// Finds suspicious string constructor and check their parameters. -/// -/// For the user-facing documentation see: -/// http://clang.llvm.org/extra/clang-tidy/checks/misc-string-constructor.html -class StringConstructorCheck : public ClangTidyCheck { -public: - StringConstructorCheck(StringRef Name, ClangTidyContext *Context); - void storeOptions(ClangTidyOptions::OptionMap &Opts) override; - void registerMatchers(ast_matchers::MatchFinder *Finder) override; - void check(const ast_matchers::MatchFinder::MatchResult &Result) override; - -private: - const bool WarnOnLargeLength; - const unsigned int LargeLengthThreshold; -}; - -} // namespace misc -} // namespace tidy -} // namespace clang - -#endif // LLVM_CLANG_TOOLS_EXTRA_CLANG_TIDY_MISC_STRING_CONSTRUCTOR_H |