From d0e7426a06759a23c7ef9c47fc483cda1ab9a40a Mon Sep 17 00:00:00 2001 From: Yedidya Feldblum Date: Tue, 9 Jun 2020 13:17:41 -0700 Subject: [PATCH] Cut FOR_EACH_KV Summary: [Folly] Cut the FOR_EACH_KV macro, which may be replaced by a combination of range-for and structured bindings. Differential Revision: D21826182 fbshipit-source-id: ce4712afd3d0d7806eb1fca8c97009da117f982e --- .clang-format | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index ce3356d4..39b1b3d6 100644 --- a/.clang-format +++ b/.clang-format @@ -42,7 +42,7 @@ ContinuationIndentWidth: 4 Cpp11BracedListStyle: true DerivePointerAlignment: false DisableFormat: false -ForEachMacros: [ FOR_EACH, FOR_EACH_KV, FOR_EACH_R, FOR_EACH_RANGE, ] +ForEachMacros: [ FOR_EACH, FOR_EACH_R, FOR_EACH_RANGE, ] IncludeCategories: - Regex: '^<.*\.h(pp)?>' Priority: 1