-
Notifications
You must be signed in to change notification settings - Fork 709
/
hash.cpp
24 lines (19 loc) · 897 Bytes
/
hash.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#include "seal/util/hash.h"
using namespace std;
namespace seal
{
namespace util
{
// Required for C++14 compliance: static constexpr member variables are not necessarily inlined so need to
// ensure symbol is created.
constexpr size_t HashFunction::hash_block_uint64_count;
// Required for C++14 compliance: static constexpr member variables are not necessarily inlined so need to
// ensure symbol is created.
constexpr size_t HashFunction::hash_block_byte_count;
// Required for C++14 compliance: static constexpr member variables are not necessarily inlined so need to
// ensure symbol is created.
constexpr HashFunction::hash_block_type HashFunction::hash_zero_block;
} // namespace util
} // namespace seal