summary refs log tree commit diff
path: root/crypto/src
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src')
-rw-r--r--crypto/src/pqc/crypto/falcon/FalconFPR.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/src/pqc/crypto/falcon/FalconFPR.cs b/crypto/src/pqc/crypto/falcon/FalconFPR.cs

index b3f99f944..bab3d8fcb 100644 --- a/crypto/src/pqc/crypto/falcon/FalconFPR.cs +++ b/crypto/src/pqc/crypto/falcon/FalconFPR.cs
@@ -2,11 +2,12 @@ using System; namespace Org.BouncyCastle.Pqc.Crypto.Falcon { - class FalconFPR + internal struct FalconFPR { internal double v; - internal FalconFPR(double v) { + internal FalconFPR(double v) + { this.v = v; } }