mirror of
https://github.com/matrix-construct/construct
synced 2024-12-27 07:54:05 +01:00
ircd:#️⃣ Fix static constexpr linkages.
This commit is contained in:
parent
3e877ebad3
commit
169f714b25
1 changed files with 2 additions and 2 deletions
|
@ -82,7 +82,7 @@ final
|
||||||
{
|
{
|
||||||
struct ctx;
|
struct ctx;
|
||||||
|
|
||||||
static constexpr const size_t digest_size
|
static constexpr const size_t &digest_size
|
||||||
{
|
{
|
||||||
256 / 8
|
256 / 8
|
||||||
};
|
};
|
||||||
|
@ -111,7 +111,7 @@ final
|
||||||
{
|
{
|
||||||
struct ctx;
|
struct ctx;
|
||||||
|
|
||||||
static constexpr const size_t digest_size
|
static constexpr const size_t &digest_size
|
||||||
{
|
{
|
||||||
160 / 8
|
160 / 8
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue