diff options
author | Lenny Maiorani <lenny@colorado.edu> | 2021-08-12 20:12:52 -0600 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-15 15:14:19 +0200 |
commit | c27abaabc449e20e8cffac245d1e2686f94e2ba6 (patch) | |
tree | 550605831a9cf1850b0ef533113a275d16eafea0 | |
parent | 0fdfdbed9fec7a556f1a32852b61948b90044025 (diff) | |
download | serenity-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.h | 1 |
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; |