Skip to content

Commit dcda60d

Browse files
authored
Update sc_fixed_math.cc
Some more refactoring in comments
1 parent 46ea807 commit dcda60d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/sc_fixed/sc_fixed_math.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ void MMult(const fixed_val M1[16], const std::array<fixed_val, 16>& M2, std::arr
150150
Mout[15] = M1[ 3]*M2[12]+M1[ 7]*M2[13]+M1[11]*M2[14]+M1[15]*M2[15];
151151
}
152152

153-
// Absolutbetrag einer fixed_val-Zahl
153+
// Absolutbetrag einer fixed-point Zahl
154154
fixed_val sc_abs(fixed_val x) {
155155
return (x < fixed_val(0)) ? fixed_val(-x) : x;
156156
}

0 commit comments

Comments
 (0)