Skip to content

Commit 60b05fa

Browse files
nindanaotoclaude
andcommitted
Fix KEY_BUNDLE build: add missing IsNonce template parameter to hgen
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent f4fb6c4 commit 60b05fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/keybundle.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ namespace TFHEpp {
4242
template <class P>
4343
constexpr TRGSWFFT<P> oneTRGSWFFTgen()
4444
{
45-
constexpr std::array<typename P::T, P::l> h = hgen<P>();
45+
constexpr std::array<typename P::T, P::l> h = hgen<P, false>();
4646
TRGSW<P> trgsw;
4747
for (TRLWE<P> &trlwe : trgsw) trlwe = {};
4848
for (int i = 0; i < P::l; i++) {

0 commit comments

Comments
 (0)