Fixed a few compiler errors/warnings resulted from bad merges.

This commit is contained in:
Wei Dai 2021-11-01 23:50:30 -07:00
Родитель 57c0efaadc
Коммит 8994c9dbeb
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -680,7 +680,7 @@ namespace seal
inverse_ntt_negacyclic_harvey(encrypted1, encrypted1.size(), ntt_table);
}
void Evaluator::square_inplace(Ciphertext &encrypted, MemoryPoolHandle pool)
void Evaluator::square_inplace(Ciphertext &encrypted, MemoryPoolHandle pool) const
{
// Verify parameters.
if (!is_metadata_valid_for(encrypted, context_) || !is_buffer_valid(encrypted))
@ -931,7 +931,7 @@ namespace seal
encrypted.scale() = new_scale;
}
void Evaluator::bgv_square(Ciphertext &encrypted, MemoryPoolHandle pool)
void Evaluator::bgv_square(Ciphertext &encrypted, MemoryPoolHandle pool) const
{
if (encrypted.is_ntt_form())
{

Просмотреть файл

@ -159,7 +159,7 @@ namespace seal
});
}
inline void add_poly_coeffmod(
void add_poly_coeffmod(
ConstCoeffIter operand1, ConstCoeffIter operand2, std::size_t coeff_count, const Modulus &modulus,
CoeffIter result);