Userland+Tests: Remove unused <AK/Tuple.h> includes

This commit is contained in:
Hendiadyoin1 2024-02-29 16:30:49 +01:00 committed by Andrew Kaster
parent d1b5f55f91
commit fe0fde2154
Notes: sideshowbarker 2024-07-16 21:30:46 +09:00
8 changed files with 1 additions and 9 deletions

View file

@ -5,7 +5,6 @@
*/
#include <AK/StringView.h>
#include <AK/Tuple.h>
#include <AK/Vector.h>
#include <LibSemVer/SemVer.h>
#include <LibTest/TestCase.h>

View file

@ -5,7 +5,6 @@
*/
#include <AK/StringView.h>
#include <AK/Tuple.h>
#include <AK/Vector.h>
#include <LibSemVer/SemVer.h>
#include <LibTest/TestCase.h>
@ -198,7 +197,7 @@ TEST_CASE(is_greater_than) // NOLINT(readability-function-cognitive-complexity)
EXPECT(IS_GREATER_THAN_SCENARIO("1.0.0-beta"sv, "1.0.0-alpha"sv));
EXPECT(IS_GREATER_THAN_SCENARIO("1.0.0-0.beta"sv, "1.0.0-0.alpha"sv));
// 3. Either one is numeric, but not both, then numeric given low precendence
// 3. Either one is numeric, but not both, then numeric given low precedence
EXPECT(IS_GREATER_THAN_SCENARIO("1.0.0-0.alpha"sv, "1.0.0-0.0"sv));
EXPECT(!IS_GREATER_THAN_SCENARIO("1.0.0-0.0"sv, "1.0.0-0.alpha"sv));

View file

@ -10,7 +10,6 @@
#include "MP3Types.h"
#include <AK/BitStream.h>
#include <AK/MemoryStream.h>
#include <AK/Tuple.h>
#include <LibDSP/MDCT.h>
namespace Audio {

View file

@ -6,7 +6,6 @@
#pragma once
#include <AK/Tuple.h>
#include <AK/Types.h>
#include <LibPDF/Error.h>
#include <LibPDF/Fonts/Type1FontProgram.h>

View file

@ -7,7 +7,6 @@
#pragma once
#include <AK/HashMap.h>
#include <AK/Tuple.h>
#include <LibGfx/Font/OpenType/Font.h>
#include <LibGfx/Forward.h>
#include <LibPDF/Document.h>

View file

@ -13,7 +13,6 @@
#include <AK/Random.h>
#include <AK/String.h>
#include <AK/StringView.h>
#include <AK/Tuple.h>
#include <math.h>

View file

@ -4,7 +4,6 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <AK/Tuple.h>
#include <LibWeb/DOM/AccessibilityTreeNode.h>
#include <LibWeb/DOM/Document.h>
#include <LibWeb/DOM/Element.h>

View file

@ -12,7 +12,6 @@
#include <AK/LexicalPath.h>
#include <AK/Optional.h>
#include <AK/String.h>
#include <AK/Tuple.h>
#include <AK/Variant.h>
#include <AK/Vector.h>
#include <LibCore/ArgsParser.h>