1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:14:58 +00:00

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

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;