Skip to content

Commit

Permalink
AK: Stop publishing detail namespaced functions
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ldm5180 authored and awesomekling committed Aug 15, 2021
1 parent 0fdfdbe commit c27abaa
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion AK/Array.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;

0 comments on commit c27abaa

Please sign in to comment.