Небольшие исправления
This commit is contained in:
parent
89dfd7644b
commit
857d79e572
4 changed files with 8 additions and 8 deletions
|
|
@ -492,7 +492,7 @@ int main()
|
||||||
|
|
||||||
uni_number number;
|
uni_number number;
|
||||||
|
|
||||||
number.fp32 = 2.0f;
|
number.fp32 = 1.0f;
|
||||||
|
|
||||||
printf("%x\n", number.si32);
|
printf("%x\n", number.si32);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -67,10 +67,10 @@ extern inline void bgc_complex_subtract_fp32(const BgcComplexFP32* minuend, cons
|
||||||
extern inline void bgc_complex_subtract_fp64(const BgcComplexFP64* minuend, const BgcComplexFP64* subtrahend, BgcComplexFP64* difference);
|
extern inline void bgc_complex_subtract_fp64(const BgcComplexFP64* minuend, const BgcComplexFP64* subtrahend, BgcComplexFP64* difference);
|
||||||
|
|
||||||
extern inline void bgc_complex_multiply_by_number_fp32(const BgcComplexFP32* multiplicand, const float multiplier, BgcComplexFP32* product);
|
extern inline void bgc_complex_multiply_by_number_fp32(const BgcComplexFP32* multiplicand, const float multiplier, BgcComplexFP32* product);
|
||||||