mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06:27:45 +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
1 changed files with 2 additions and 2 deletions
|
@ -46,9 +46,9 @@ public:
|
||||||
constexpr static size_t reseed_threshold = 16;
|
constexpr static size_t reseed_threshold = 16;
|
||||||
|
|
||||||
using CipherType = CipherT;
|
using CipherType = CipherT;
|
||||||
using BlockType = CipherT::BlockType;
|
using BlockType = typename CipherT::BlockType;
|
||||||
using HashType = HashT;
|
using HashType = HashT;
|
||||||
using DigestType = HashT::DigestType;
|
using DigestType = typename HashT::DigestType;
|
||||||
|
|
||||||
FortunaPRNG()
|
FortunaPRNG()
|
||||||
: m_counter(ByteBuffer::create_zeroed(BlockType::block_size()))
|
: m_counter(ByteBuffer::create_zeroed(BlockType::block_size()))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue