[clang-tools-extra] r312102 - [clang-tidy] test commit for granted access
Jonas Toth via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 30 00:50:28 PDT 2017
Author: jonastoth
Date: Wed Aug 30 00:50:28 2017
New Revision: 312102
URL: http://llvm.org/viewvc/llvm-project?rev=312102&view=rev
Log:
[clang-tidy] test commit for granted access
Modified:
clang-tools-extra/trunk/clang-tidy/cppcoreguidelines/NoMallocCheck.cpp
Modified: clang-tools-extra/trunk/clang-tidy/cppcoreguidelines/NoMallocCheck.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/clang-tidy/cppcoreguidelines/NoMallocCheck.cpp?rev=312102&r1=312101&r2=312102&view=diff
==============================================================================
--- clang-tools-extra/trunk/clang-tidy/cppcoreguidelines/NoMallocCheck.cpp (original)
+++ clang-tools-extra/trunk/clang-tidy/cppcoreguidelines/NoMallocCheck.cpp Wed Aug 30 00:50:28 2017
@@ -29,7 +29,7 @@ Matcher<FunctionDecl> hasAnyListedName(c
utils::options::parseStringList(FunctionNames);
return hasAnyName(std::vector<StringRef>(NameList.begin(), NameList.end()));
}
-}
+} // namespace
void NoMallocCheck::storeOptions(ClangTidyOptions::OptionMap &Opts) {
Options.store(Opts, "Allocations", AllocList);
More information about the cfe-commits
mailing list