From e72a520a4c68ba74e7b71cc3388a19233bfb562b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Fri, 4 Sep 2020 13:31:07 +0200 Subject: [PATCH] Cleanup: Clang-Tidy readability-redundant-declaration fix No functional changes. --- .clang-tidy | 1 - source/blender/io/collada/DocumentExporter.cpp | 2 -- 2 files changed, 3 deletions(-) diff --git a/.clang-tidy b/.clang-tidy index 8d2abc5897c..8a0f437066c 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -14,7 +14,6 @@ Checks: > -readability-inconsistent-declaration-parameter-name, -readability-redundant-member-init, - -readability-redundant-declaration, -readability-qualified-auto, -readability-use-anyofallof, diff --git a/source/blender/io/collada/DocumentExporter.cpp b/source/blender/io/collada/DocumentExporter.cpp index 0578bf45f04..314e4f8116f 100644 --- a/source/blender/io/collada/DocumentExporter.cpp +++ b/source/blender/io/collada/DocumentExporter.cpp @@ -106,8 +106,6 @@ extern "C" char build_hash[]; #include "collada_internal.h" #include "collada_utils.h" -extern bool bc_has_object_type(LinkNode *export_set, short obtype); - // can probably go after refactor is complete #include "InstanceWriter.h" #include "TransformWriter.h"