From c27abaabc449e20e8cffac245d1e2686f94e2ba6 Mon Sep 17 00:00:00 2001 From: Lenny Maiorani Date: Thu, 12 Aug 2021 20:12:52 -0600 Subject: [PATCH] AK: Stop publishing detail namespaced functions Problem: - `AK::Detail::integer_sequence_generate_array` is published via a `using` directive in the `Array.h` header, but this is a `Detail` function. Solution: - Remove the `using` declaration. --- AK/Array.h | 1 - 1 file changed, 1 deletion(-) diff --git a/AK/Array.h b/AK/Array.h index 22964c7803..0393aa6d56 100644 --- a/AK/Array.h +++ b/AK/Array.h @@ -111,4 +111,3 @@ constexpr static auto iota_array(T const offset = {}) using AK::Array; using AK::iota_array; -using AK::Detail::integer_sequence_generate_array;