diff options
author | Brad King <brad.king@kitware.com> | 2019-07-31 15:47:44 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-07-31 15:54:28 (GMT) |
commit | 1672d3d5a5a0c5c73a857f5e4592fe998da3ae78 (patch) | |
tree | 74f82383ec21d00704e149e7e9cca418d051f484 /Source/cmFileAPI.cxx | |
parent | 403b6b3bc387fbe5c9c058d591f478f94b40a9fd (diff) | |
parent | 4af094c8dfa8dd5bfb943a84e5f4c00f7bf2ee8f (diff) | |
download | CMake-1672d3d5a5a0c5c73a857f5e4592fe998da3ae78.zip CMake-1672d3d5a5a0c5c73a857f5e4592fe998da3ae78.tar.gz CMake-1672d3d5a5a0c5c73a857f5e4592fe998da3ae78.tar.bz2 |
Merge topic 'clang-tidy-8'
4af094c8df clang-tidy: Blacklist violations for version 8
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3627
Diffstat (limited to 'Source/cmFileAPI.cxx')
-rw-r--r-- | Source/cmFileAPI.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmFileAPI.cxx b/Source/cmFileAPI.cxx index aa84396..2594287 100644 --- a/Source/cmFileAPI.cxx +++ b/Source/cmFileAPI.cxx @@ -684,7 +684,6 @@ void cmFileAPI::BuildClientRequestCodeModel( Json::Value cmFileAPI::BuildCodeModel(Object const& object) { - using namespace std::placeholders; Json::Value codemodel = cmFileAPICodemodelDump(*this, object.Version); codemodel["kind"] = this->ObjectKindName(object.Kind); @@ -719,7 +718,6 @@ void cmFileAPI::BuildClientRequestCache( Json::Value cmFileAPI::BuildCache(Object const& object) { - using namespace std::placeholders; Json::Value cache = cmFileAPICacheDump(*this, object.Version); cache["kind"] = this->ObjectKindName(object.Kind); @@ -754,7 +752,6 @@ void cmFileAPI::BuildClientRequestCMakeFiles( Json::Value cmFileAPI::BuildCMakeFiles(Object const& object) { - using namespace std::placeholders; Json::Value cmakeFiles = cmFileAPICMakeFilesDump(*this, object.Version); cmakeFiles["kind"] = this->ObjectKindName(object.Kind); |