Skip to content

Commit b664d2c

Browse files
committed
UPDATE COMMENT
1 parent 6db00d9 commit b664d2c

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

fix32/fix32.go

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import (
77
"github.com/camry/fp/fixutil"
88
)
99

10+
// Direct fixed point (signed 16.16) functions.
11+
1012
const (
1113
Shift int32 = 16
1214
FractionMask int32 = (1 << Shift) - 1

fix64/fix64.go

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ import (
66
"github.com/camry/fp/fixutil"
77
)
88

9+
// Direct fixed point (signed 32.32) functions.
10+
911
const (
1012
Shift int32 = 32
1113
FractionMask int64 = (1 << Shift) - 1

0 commit comments

Comments
 (0)