summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoustafa Raafat <MoustafaRaafat2@gmail.com>2022-11-14 18:25:18 +0000
committerSam Atkins <atkinssj@gmail.com>2022-12-09 11:25:30 +0000
commitb8f1e1bed2a77aadfb7b23a37ff4e3015a68dc23 (patch)
treee8a9cec49f1a823398ce907653fb7c66f6f8c10d
parentae2abcebbbabf7ca8b806b5555c11cd0b216dbdb (diff)
downloadserenity-b8f1e1bed2a77aadfb7b23a37ff4e3015a68dc23.zip
Everywhere: Remove unnecessary AK and Detail namespace scoping
-rw-r--r--AK/BinaryBufferWriter.h2
-rw-r--r--AK/Concepts.h2
-rw-r--r--AK/Forward.h2
-rw-r--r--AK/HashTable.h2
-rw-r--r--AK/IntrusiveRedBlackTree.h2
-rw-r--r--AK/StdLibExtraDetails.h2
-rw-r--r--AK/StdLibExtras.h4
-rw-r--r--AK/Stream.h4
-rw-r--r--AK/StringBuilder.h2
-rw-r--r--AK/UFixedBigInt.h4
10 files changed, 13 insertions, 13 deletions
diff --git a/AK/BinaryBufferWriter.h b/AK/BinaryBufferWriter.h
index db7ea998de..abbade998a 100644
--- a/AK/BinaryBufferWriter.h
+++ b/AK/BinaryBufferWriter.h
@@ -19,7 +19,7 @@ public:
}
template<typename T>
- requires(AK::Detail::IsTriviallyConstructible<T>) T& append_structure()
+ requires(IsTriviallyConstructible<T>) T& append_structure()
{
VERIFY((reinterpret_cast<FlatPtr>(m_target.data()) + m_offset) % alignof(T) == 0);
VERIFY(m_offset + sizeof(T) <= m_target.size());
diff --git a/AK/Concepts.h b/AK/Concepts.h
index f419990e2d..8b193d5127 100644
--- a/AK/Concepts.h
+++ b/AK/Concepts.h
@@ -46,7 +46,7 @@ template<typename T, template<typename...> typename S>
concept SpecializationOf = IsSpecializationOf<T, S>;
template<typename T>
-concept AnyString = Detail::IsConstructible<StringView, T>;
+concept AnyString = IsConstructible<StringView, T>;
template<typename T, typename U>
concept HashCompatible = IsHashCompatible<Detail::Decay<T>, Detail::Decay<U>>;
diff --git a/AK/Forward.h b/AK/Forward.h
index 31561e6de4..d3987b9377 100644
--- a/AK/Forward.h
+++ b/AK/Forward.h
@@ -16,7 +16,7 @@ class ByteBuffer;
}
class Bitmap;
-using ByteBuffer = AK::Detail::ByteBuffer<32>;
+using ByteBuffer = Detail::ByteBuffer<32>;
class Error;
class GenericLexer;
class IPv4Address;
diff --git a/AK/HashTable.h b/AK/HashTable.h
index e2eee6d78a..b855eb881e 100644
--- a/AK/HashTable.h
+++ b/AK/HashTable.h
@@ -293,7 +293,7 @@ public:
{
if (m_capacity == 0)
return;
- if constexpr (!Detail::IsTriviallyDestructible<T>) {
+ if constexpr (!IsTriviallyDestructible<T>) {
for (auto* bucket : *this)
bucket->~T();
}
diff --git a/AK/IntrusiveRedBlackTree.h b/AK/IntrusiveRedBlackTree.h
index 9dbf2b24dc..ae20c16f02 100644
--- a/AK/IntrusiveRedBlackTree.h
+++ b/AK/IntrusiveRedBlackTree.h
@@ -24,7 +24,7 @@ struct ExtractIntrusiveRedBlackTreeTypes {
};
template<Integral K, typename V, typename Container = RawPtr<V>>
-using SubstitutedIntrusiveRedBlackTreeNode = IntrusiveRedBlackTreeNode<K, V, typename Detail::SubstituteIntrusiveContainerType<V, Container>::Type>;
+using SubstitutedIntrusiveRedBlackTreeNode = IntrusiveRedBlackTreeNode<K, V, typename SubstituteIntrusiveContainerType<V, Container>::Type>;
template<Integral K, typename V, typename Container, SubstitutedIntrusiveRedBlackTreeNode<K, V, Container> V::*member>
class IntrusiveRedBlackTree : public BaseRedBlackTree<K> {
diff --git a/AK/StdLibExtraDetails.h b/AK/StdLibExtraDetails.h
index 446cf5adfe..b2a0bcf77a 100644
--- a/AK/StdLibExtraDetails.h
+++ b/AK/StdLibExtraDetails.h
@@ -582,7 +582,7 @@ inline constexpr bool IsSpecializationOf<U<Us...>, U> = true;
template<typename T>
struct __Decay {
- typedef Detail::RemoveCVReference<T> type;
+ typedef RemoveCVReference<T> type;
};
template<typename T>
struct __Decay<T[]> {
diff --git a/AK/StdLibExtras.h b/AK/StdLibExtras.h
index 0600889309..9f8a265ed4 100644
--- a/AK/StdLibExtras.h
+++ b/AK/StdLibExtras.h
@@ -36,13 +36,13 @@ namespace std { // NOLINT(cert-dcl58-cpp) Names in std to aid tools
// NOTE: These are in the "std" namespace since some compilers and static analyzers rely on it.
template<typename T>
-constexpr T&& forward(AK::Detail::RemoveReference<T>& param)
+constexpr T&& forward(RemoveReference<T>& param)
{
return static_cast<T&&>(param);
}
template<typename T>
-constexpr T&& forward(AK::Detail::RemoveReference<T>&& param) noexcept
+constexpr T&& forward(RemoveReference<T>&& param) noexcept
{
static_assert(!IsLvalueReference<T>, "Can't forward an rvalue as an lvalue.");
return static_cast<T&&>(param);
diff --git a/AK/Stream.h b/AK/Stream.h
index 45e6257703..c4269da90e 100644
--- a/AK/Stream.h
+++ b/AK/Stream.h
@@ -60,7 +60,7 @@ private:
namespace AK {
-class InputStream : public virtual AK::Detail::Stream {
+class InputStream : public virtual Detail::Stream {
public:
// Reads at least one byte unless none are requested or none are available. Does nothing
// and returns zero if there is already an error.
@@ -81,7 +81,7 @@ public:
virtual bool discard_or_error(size_t count) = 0;
};
-class OutputStream : public virtual AK::Detail::Stream {
+class OutputStream : public virtual Detail::Stream {
public:
virtual size_t write(ReadonlyBytes) = 0;
virtual bool write_or_error(ReadonlyBytes) = 0;
diff --git a/AK/StringBuilder.h b/AK/StringBuilder.h
index 9bde5b102d..78790d9c22 100644
--- a/AK/StringBuilder.h
+++ b/AK/StringBuilder.h
@@ -93,7 +93,7 @@ private:
u8 const* data() const { return m_buffer.data(); }
static constexpr size_t inline_capacity = 256;
- AK::Detail::ByteBuffer<inline_capacity> m_buffer;
+ Detail::ByteBuffer<inline_capacity> m_buffer;
};
}
diff --git a/AK/UFixedBigInt.h b/AK/UFixedBigInt.h
index 22ae0129f8..2066c8376a 100644
--- a/AK/UFixedBigInt.h
+++ b/AK/UFixedBigInt.h
@@ -25,9 +25,9 @@ requires(sizeof(T) >= sizeof(u64) && IsUnsigned<T>) class UFixedBigInt;
// constexpr inline bool Detail::IsIntegral<UFixedBigInt<T>> = true;
template<typename T>
-constexpr inline bool Detail::IsUnsigned<UFixedBigInt<T>> = true;
+constexpr inline bool IsUnsigned<UFixedBigInt<T>> = true;
template<typename T>
-constexpr inline bool Detail::IsSigned<UFixedBigInt<T>> = false;
+constexpr inline bool IsSigned<UFixedBigInt<T>> = false;
template<typename T>
struct NumericLimits<UFixedBigInt<T>> {