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.
This commit is contained in:
Lenny Maiorani 2021-08-12 20:12:52 -06:00 committed by Andreas Kling
parent 0fdfdbed9f
commit c27abaabc4
Notes: sideshowbarker 2024-07-18 05:39:52 +09:00

View file

@ -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;