summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLenny Maiorani <lenny@colorado.edu>2021-08-12 20:12:52 -0600
committerAndreas Kling <kling@serenityos.org>2021-08-15 15:14:19 +0200
commitc27abaabc449e20e8cffac245d1e2686f94e2ba6 (patch)
tree550605831a9cf1850b0ef533113a275d16eafea0
parent0fdfdbed9fec7a556f1a32852b61948b90044025 (diff)
downloadserenity-c27abaabc449e20e8cffac245d1e2686f94e2ba6.zip
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.
-rw-r--r--AK/Array.h1
1 files changed, 0 insertions, 1 deletions
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;