From 8fee37794610e4d53859b205fc016711ff8c6c29 Mon Sep 17 00:00:00 2001 From: Tobias Heuer Date: Fri, 22 Dec 2023 11:19:40 +0100 Subject: [PATCH] prevent some parts of the code from being formatted --- mt-kahypar/partition/context.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mt-kahypar/partition/context.h b/mt-kahypar/partition/context.h index 08e378433..19eef0851 100644 --- a/mt-kahypar/partition/context.h +++ b/mt-kahypar/partition/context.h @@ -36,6 +36,8 @@ namespace mt_kahypar { // Forward Declartion class TargetGraph; +// FIXME: Formatting this would break the `sql_plottools_serializer_test`. +// clang-format off struct PartitioningParameters { Mode mode = Mode::UNDEFINED; Objective objective = Objective::UNDEFINED; @@ -320,5 +322,6 @@ class Context { }; std::ostream & operator<< (std::ostream& str, const Context& context); +// clang-format on -} // namespace mt_kahypar +} // namespace mt_kahypar