Skip to content

Commit a01b50b

Browse files
committed
Formatting.
1 parent 6fcc25b commit a01b50b

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

native/src/seal/context.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,8 @@ namespace seal
438438
}
439439

440440
// 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))));
442443

443444
// Add pointer to next context_data to the previous one (linked list)
444445
// Add pointer to previous context_data to the next one (doubly linked list)

native/src/seal/util/ntt.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,8 @@ namespace seal
226226
{
227227
namespace util
228228
{
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))
230231
{
231232
#ifdef SEAL_DEBUG
232233
if (!pool_)

0 commit comments

Comments
 (0)