llvm::sort(C.begin(), C.end()) -> llvm::sort(C)
authorFangrui Song <maskray@google.com>
Thu, 27 Sep 2018 04:19:29 +0000 (04:19 +0000)
committerFangrui Song <maskray@google.com>
Thu, 27 Sep 2018 04:19:29 +0000 (04:19 +0000)
The convenience wrapper in STLExtras is available since rL342102.

llvm-svn: 343166

clang-tools-extra/clang-tidy/readability/MagicNumbersCheck.cpp

index 08021f3..0a08721 100644 (file)
@@ -66,7 +66,7 @@ MagicNumbersCheck::MagicNumbersCheck(StringRef Name, ClangTidyContext *Context)
   IgnoredIntegerValues.resize(IgnoredIntegerValuesInput.size());
   llvm::transform(IgnoredIntegerValuesInput, IgnoredIntegerValues.begin(),
                   [](const std::string &Value) { return std::stoll(Value); });
-  llvm::sort(IgnoredIntegerValues.begin(), IgnoredIntegerValues.end());
+  llvm::sort(IgnoredIntegerValues);
 
   if (!IgnoreAllFloatingPointValues) {
     // Process the set of ignored floating point values.