diff options
author | Linus Groh <mail@linusgroh.de> | 2022-11-27 12:12:02 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-12-03 23:52:23 +0000 |
commit | babfc13c846aba4f0800f700721e2955be438c02 (patch) | |
tree | f16438752ca7109bae3495109d0713438bf893d6 /Userland/Libraries/LibCore | |
parent | d26aabff0401690d6dd1332558b40f5cb64e4428 (diff) | |
download | serenity-babfc13c846aba4f0800f700721e2955be438c02.zip |
Everywhere: Remove 'clang-format off' comments that are no longer needed
https://github.com/SerenityOS/serenity/pull/15654#issuecomment-1322554496
Diffstat (limited to 'Userland/Libraries/LibCore')
-rw-r--r-- | Userland/Libraries/LibCore/SharedCircularQueue.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibCore/SharedCircularQueue.h b/Userland/Libraries/LibCore/SharedCircularQueue.h index 4c571cd040..23a529bd91 100644 --- a/Userland/Libraries/LibCore/SharedCircularQueue.h +++ b/Userland/Libraries/LibCore/SharedCircularQueue.h @@ -41,12 +41,10 @@ namespace Core { // This class is designed to be transferred over IPC and mmap()ed into multiple processes' memory. // It is a synthetic pointer to the actual shared memory, which is abstracted away from the user. // FIXME: Make this independent of shared memory, so that we can move it to AK. -// clang-format off template<typename T, size_t Size = 32> // Size must be a power of two, which speeds up the modulus operations for indexing. requires(popcount(Size) == 1) class SharedSingleProducerCircularQueue final { - // clang-format on public: using ValueType = T; |