From f9194840e7f3a7f1547c0b5d0827bfded7e747d7 Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Mon, 26 May 2025 17:04:40 +0200 Subject: [PATCH] style: remove unused `array` includes --- 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 81459408a8e..f2be70677c5 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 f73cc0aeac5..da12f479c92 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