From 3f0409d7cc0791a2d7acaeaa98244824a4f114de Mon Sep 17 00:00:00 2001 From: Piotr Idzik <65706193+vil02@users.noreply.github.com> Date: Thu, 14 Aug 2025 03:44:21 +0200 Subject: [PATCH] style: remove unused `array` includes (#2947) --- ciphers/base64_encoding.cpp | 1 - sorting/recursive_bubble_sort.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/ciphers/base64_encoding.cpp b/ciphers/base64_encoding.cpp index 81459408a..f2be70677 100644 --- a/ciphers/base64_encoding.cpp +++ b/ciphers/base64_encoding.cpp @@ -11,7 +11,6 @@ * digits. * @author [Ashish Daulatabad](https://github.com/AshishYUO) */ -#include /// for `std::array` #include /// for `assert` operations #include #include /// for IO operations diff --git a/sorting/recursive_bubble_sort.cpp b/sorting/recursive_bubble_sort.cpp index f73cc0aea..da12f479c 100644 --- a/sorting/recursive_bubble_sort.cpp +++ b/sorting/recursive_bubble_sort.cpp @@ -58,7 +58,6 @@ */ #include /// for std::is_sorted -#include /// for std::array #include /// for assert #include #include /// for IO operations