File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -438,7 +438,8 @@ namespace seal
438
438
}
439
439
440
440
// Add them to the context_data_map_
441
- context_data_map_.emplace (make_pair (next_parms_id, make_shared<const ContextData>(std::move (next_context_data))));
441
+ context_data_map_.emplace (
442
+ make_pair (next_parms_id, make_shared<const ContextData>(std::move (next_context_data))));
442
443
443
444
// Add pointer to next context_data to the previous one (linked list)
444
445
// Add pointer to previous context_data to the next one (doubly linked list)
Original file line number Diff line number Diff line change @@ -226,7 +226,8 @@ namespace seal
226
226
{
227
227
namespace util
228
228
{
229
- NTTTables::NTTTables (int coeff_count_power, const Modulus &modulus, MemoryPoolHandle pool) : pool_(std::move(pool))
229
+ NTTTables::NTTTables (int coeff_count_power, const Modulus &modulus, MemoryPoolHandle pool)
230
+ : pool_(std::move(pool))
230
231
{
231
232
#ifdef SEAL_DEBUG
232
233
if (!pool_)
You can’t perform that action at this time.
0 commit comments