mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-03 08:08:43 +00:00
Kernel: Make clang(?) happy about templates(?)
This caused some issues with QtCreator, and since it's not wrong and improves readability very slightly, I adopt it.
This commit is contained in:
parent
336303bda4
commit
719cb93a1a
Notes:
sideshowbarker
2024-07-18 21:47:28 +09:00
Author: https://github.com/BenWiederhake
Commit: 719cb93a1a
Pull-request: https://github.com/SerenityOS/serenity/pull/5323
Reviewed-by: https://github.com/ADKaster
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/bgianfo
1 changed files with 2 additions and 2 deletions
|
@ -46,9 +46,9 @@ public:
|
|||
constexpr static size_t reseed_threshold = 16;
|
||||
|
||||
using CipherType = CipherT;
|
||||
using BlockType = CipherT::BlockType;
|
||||
using BlockType = typename CipherT::BlockType;
|
||||
using HashType = HashT;
|
||||
using DigestType = HashT::DigestType;
|
||||
using DigestType = typename HashT::DigestType;
|
||||
|
||||
FortunaPRNG()
|
||||
: m_counter(ByteBuffer::create_zeroed(BlockType::block_size()))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue