From 54907d2a1aefba1a4fb34ebd26b9227534908a1c Mon Sep 17 00:00:00 2001
From: Jeremy B <97525434+42jeremy@users.noreply.github.com>
Date: Thu, 1 Dec 2022 14:19:15 +0100
Subject: [PATCH] Update src/query/v2/multiframe.cpp

Co-authored-by: Kostas Kyrimis  <kostaskyrim@gmail.com>
---
 src/query/v2/multiframe.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/query/v2/multiframe.cpp b/src/query/v2/multiframe.cpp
index 27b0872ed..05d2a755b 100644
--- a/src/query/v2/multiframe.cpp
+++ b/src/query/v2/multiframe.cpp
@@ -57,7 +57,6 @@ void MultiFrame::DefragmentValidFrames() noexcept {
   in the range in such a way that the elements that are not to be removed appear in the beginning of the range.
   Relative order of the elements that remain is preserved and the physical size of the container is unchanged."
   */
-  [[maybe_unused]] const auto it =
       std::remove_if(frames_.begin(), frames_.end(), [](auto &frame) { return !frame.IsValid(); });
 }