From 63372addd87ce33bc50022ea558a932cedf44f0b Mon Sep 17 00:00:00 2001 From: Eduardo Almeida Date: Mon, 29 May 2023 15:27:46 +0100 Subject: [PATCH] check-style: Add clang-format-17 to list of supported versions --- doc/contributing/source/coding-style.rst | 1 + utils/check-style-clang-format.py | 1 + 2 files changed, 2 insertions(+) diff --git a/doc/contributing/source/coding-style.rst b/doc/contributing/source/coding-style.rst index e7c2d9c18..86f02550f 100644 --- a/doc/contributing/source/coding-style.rst +++ b/doc/contributing/source/coding-style.rst @@ -38,6 +38,7 @@ previous versions. The following list contains the set of clang-format versions that are verified to produce consistent output among themselves. +* clang-format-17 * clang-format-16 * clang-format-15 * clang-format-14 diff --git a/utils/check-style-clang-format.py b/utils/check-style-clang-format.py index 511aa2696..1ce0a38e5 100755 --- a/utils/check-style-clang-format.py +++ b/utils/check-style-clang-format.py @@ -49,6 +49,7 @@ from typing import Callable, Dict, List, Tuple # PARAMETERS ########################################################### CLANG_FORMAT_VERSIONS = [ + 17, 16, 15, 14,