includes/libstd: Fixed missing semicolon in fixed point library

This commit is contained in:
WerWolv
2021-10-20 15:13:26 +02:00
committed by GitHub
parent c24f1f28d2
commit b2f58d876d

View File

@@ -12,7 +12,7 @@ namespace std::fxpt {
fn change_precision(fixed value, u32 start_precision, u32 end_precision) {
return std::fxpt::to_fixed(std::fxpt::to_float(value, start_precision), end_precision);
}
};
fn add(fixed a, fixed b, u32 precision) {
return a + b;
@@ -30,4 +30,4 @@ namespace std::fxpt {
return (a << precision) / b;
};
}
}